firstinstead of
second
first second
Anyone run into this before? I'm not css problem savvy enough to know what to Google for. I ended up just putting br's with a "clear: both" class on them in between rows, but it's not as clean as it was before.
This blog is shared between Linden and Rachel, who are cousins. The purpose of the blog is to share interesting information, links, and events. We share interests such as Apple Computers, Gaming, SciFi and Fantasy, computers in general, Programming (yay Python), websites and building them, and cool things in general.
firstinstead of
second
first second
www.flickr.com
|
2 comments:
Without actual HTML+CSS it's hard to tell, but it *looks* like the label size is causing the label text to wrap. There are two general solutions:
1) Quick and Dirty: use a non-breaking space instead of a regular space.
2) More subtle: Start monkeying with the width and display properties of the label to get the right effect (temporarily setting a border and background can help with debugging this), and *maybe* try using the IE-specific 'word-wrap' if all else fails.
It doesn't seem to be the label size, even IE shows the label as being much wider than the text, but I'll try your solutions.. thanks!
Post a Comment