CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
Fix for this?
LinCSS25
Permalink to comment
#
January 2009
Can anyone help me find a fix for this IE issue Im having. My date styling for my blog on my site looks fine in ff, but has a spacing issue in IE for windows. Can anyone see if they see the problem or know of a fix for this?
http://www.linkcreativedesign.com/blog
cabe
Permalink to comment
#
January 2009
i think the space after the date could be the reason. your code is:
<small>Oct.1 <!-- by admin --></small>
ie really adds a space there and puts it in the next line, so there's an empty line before the year. just remove the space and it works:
<small>Oct.1<!-- by admin --></small>
i also would make the font-size a bit smaller, because fonts can be bolder in windows. i've seen that some dates flow over your rectangle, like Aug.21
Add a Comment
http://www.linkcreativedesign.com/blog
ie really adds a space there and puts it in the next line, so there's an empty line before the year. just remove the space and it works:
i also would make the font-size a bit smaller, because fonts can be bolder in windows. i've seen that some dates flow over your rectangle, like Aug.21