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/
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.
I think you want this:
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/
SOmething like this ? I think you should use
default
vspointer
Ref:
http://www.w3schools.com/cssref/tryit.asp?filename=trycss_cursor