Why doesn't IE render letter-spacing after the last letter?
<span style="letter-spacing: 5px;">Red<span s开发者_Go百科tyle="letter-spacing: 0px;">Blue</span></span>
Looks like this in IE:
R e dBlue But like this in other browsers: R e d Blue Is there any way I can get IE to render it the way other browsers do?It looks like your code is off above. You have not closed the first span
where I think you want it to be closed.
Try this first
<span style="letter-spacing: 5px;">Red</span><span style="letter-spacing: 0px;">Blue</span>
If that doesn't fix it, why not add a
between them, like so:
<span style="letter-spacing: 5px;">Red</span> <span style="letter-spacing: 0px;">Blue</span>
精彩评论