[thelist] td and wrapping lots of images

matt g. mrg at members.evolt.org
Tue Jan 22 15:21:58 CST 2002


At issue: I have a bunch of images in a large liquid table cell (95%). i
would like the line of images to automatically break when 'appropriate',
*without* having space between the images.

The following fills the space on some browsers, but others just make the
table as wide as the content, without any 'automatic' line breaks:
    <table width="95%">
        <td>
            <img><img><img><img><img><img>
        </td>
    </table>

This fills the space on all browsers, but leaves space in-between the
images:
    <table width="95%">
        <td>
            <img>
            <img>
            <img>
            <img>
            <img>
            <img>
        </td>
    </table>

Is there a way to achieve both goals here?

Thanks,
matt garrett






More information about the thelist mailing list