Darn it, anyway. Check this out, using IE 6 Win:
<!-- m --><a class="postlink" href="http://www.schomer.com/testing/thumbs/">http://www.schomer.com/testing/thumbs/</a><!-- m -->
The thumbnails, which are floated left, extend outside the right side of the div. Driving me insane. Works fine in other browsers.
Anyone know how I can get these to stay put, inside the div?
Thanks!
SchomerIE needs to know the width, so you could add another enclosing div within #container.
<div id="container">
<div style="width:100%;">
<!-- thumbnails -->
</div>
</div>
BTY use CSS instead of tables!Originally posted by Fang
IE needs to know the width, so you could add another enclosing div within #container.
<div id="container">
<div style="width:100%;">
<!-- thumbnails -->
</div>
</div>
BTY use CSS instead of tables!
Putting a 100% width on a div inside that div works! Nice fix!
I have to use the tables because I have images that are different sizes, and I need them to vertically align within the box. As far as I could tell, from reading online, this is the only way to accomplish this (with a single-cell table around each one). Not so?
<!-- m --><a class="postlink" href="http://www.schomer.com/testing/thumbs/">http://www.schomer.com/testing/thumbs/</a><!-- m -->
The thumbnails, which are floated left, extend outside the right side of the div. Driving me insane. Works fine in other browsers.
Anyone know how I can get these to stay put, inside the div?
Thanks!
SchomerIE needs to know the width, so you could add another enclosing div within #container.
<div id="container">
<div style="width:100%;">
<!-- thumbnails -->
</div>
</div>
BTY use CSS instead of tables!Originally posted by Fang
IE needs to know the width, so you could add another enclosing div within #container.
<div id="container">
<div style="width:100%;">
<!-- thumbnails -->
</div>
</div>
BTY use CSS instead of tables!
Putting a 100% width on a div inside that div works! Nice fix!
I have to use the tables because I have images that are different sizes, and I need them to vertically align within the box. As far as I could tell, from reading online, this is the only way to accomplish this (with a single-cell table around each one). Not so?