mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-13 11:10:13 +01:00
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>
|
|
|