3

HTML

<div contenteditable="true">
     <span class="optional">Optional</span>
</div>

CSS

.optional {
    cursor: pointer;
}

When I hover over the optional class span in IE, it does not change the cursor from text type to pointer type. When I hover over the optional class span in Chrome, it does work.

Is there a workaround for this in IE?

George
  • 36,413
  • 9
  • 66
  • 103
Micah
  • 49
  • 11
  • 2
    Thank you for editing and replying. Unfortunately, I had already reviewed the referenced link and it does not help. I am working with a html5 document which doesn't appear to operate from the three doctypes in html4.1. For that reason, I don't think that fix is an option - although I'm all ears. – Micah Apr 03 '14 at 17:41
  • I don't necessarily mean you need to use that answer. I just marked the question as a duplicate because that's what it is. Chances are if there isn't an answer on that question that fulfills your needs, it's not possible. Good question though. – George Apr 03 '14 at 17:54

1 Answers1

-1

Try:

.optional:hover {
    cursor: pointer;
}
Kevin M.
  • 25
  • 4