People chide me on my choice of Safari over Firefox on my macs, but here is a reason why….
So, when I was hacking together the layout for this blog, I noticed something weird. I had a tweet with a really really long “hashtag” in it. Like this:
Obviously, the text ran out side of the sidebar, and looked ugly. Google to the rescue. I found some cool CSS v3 stuff that would fix it.
text-wrap: unrestricted;
word-wrap: break-word;
Worked like a Charm under Safari. Just like the CSS v3 docs said it should.
but not so much under Firefox. I was forced to add
overflow: hidden;
and get this…
Sigh.