'MOZILLA_1_8_0_BRANCH'. git-svn-id: svn://10.0.0.236/branches/MOZILLA_1_8_0_BRANCH@185757 18797224-902f-48f8-a5cc-f745e15eee43
21 lines
663 B
HTML
21 lines
663 B
HTML
<html><head><style>
|
|
TABLE {table-layout:fixed; border: solid red 1px; width: 400}
|
|
TD {border: solid green 1px;}
|
|
TD.one {border: solid blue 1px; width: 300}
|
|
TD.two {border: solid blue 1px;}
|
|
</style></head><body>
|
|
|
|
<!-- this table should derive the width of the second column from what's
|
|
left over from the table width after subtracting the first column width -->
|
|
|
|
<TABLE><TR>
|
|
<TD class="one">What's New on WebDeveloper.com</TD>
|
|
<TD class="two">umm</TD>
|
|
</TR><TR>
|
|
<TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
|
|
<TD>blah blah blah blah blah blah blah blah blah blah blah blah</TD>
|
|
</TR></TABLE>
|
|
|
|
</body></html>
|
|
|