How to change the cursor from “text” to “default” when using the detail tag

I used the detail tag in a blog post on WordPress and I would like the default cursor to appear instead of the text cursor (which displays by default). If you could show a solution using strictly inline CSS, I would appreciate it. (I don’t have access to CSS on my WordPress blog.)

Link to example image: http://esploded.com/f/cursor-snappng/

Read More

I tried doing this:

<p style="cursor:default">
<details> 
<summary style="outline: none;">Alabama</summary>
Domino’s
Donatos
</details>
</p>

but it didn’t work for some reason.

Related posts

Leave a Reply

2 comments

  1. I think you want this:

    <p>
    <details style="cursor:default"> 
    <summary style="outline: none;">Alabama</summary>
    Domino’s
    Donatos
    </details>
    </p>
    

    Also, pointer is not default. If you do want the pointer just make the change. The only difference is that the stlye is on the details tag instead. I tested and it worked for me : http://jsfiddle.net/w4L6T/