Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've setup this jsFiddle to illustrate the problem. I'm using CSS psuedo elements to create a pointer, that's offset the parent element.

http://jsfiddle.net/fLTFP/

It works just fine in FireFox and Webkit browsers and IE 9, but in IE 8 the pointer gets clipped.

share|improve this question

2 Answers

http://www.w3schools.com/cssref/sel_after.asp

and notice "Note: For :after to work in IE8, a <!DOCTYPE> must be declared."

though it works for me in ie8

share|improve this answer
I've got a DOCTYPE set on my page. XHTML 1.0. In IE8 you can see the full indicator? – jaredonline Jul 31 '12 at 22:13
In that particular fiddle, it does work for me in Chrome, FF, IE9 and IE8, though (of course) IE7 doesn't show it at all – Shortbus Jul 31 '12 at 22:17
up vote 0 down vote accepted

The issue had to do with the filter declaration. It was creating a gradient, but was changing the way IE rendered the element. Removing it fixed the clipping.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.