> I'm looking for the CSS that would replicate this functionality:
>
> <table width = "100%">
> <tr><td align"left">left</td><td
> align="center">right</td><td align="right">center</td></tr>
> </table>
I'm sure there are other techniques but to simluate columns in a single
row, I've always used the 'float' property:
#first-column, #second-column, #third-column {
float: left;
width: 33%; // specifying a width is very important to MSIE, I
believe, and 'auto' doesn't work too well in said browser
}
...and then in the indivdual faux-columns, insert your text-align rule.
#second-column {
text-align: center;
}
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Web-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/web-dev/email@hidden
This email sent to email@hidden