mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55 lines
2.6 KiB
HTML
55 lines
2.6 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
|
|
<HTML>
|
|
<BODY>
|
|
<FORM>
|
|
This is the way all the tables below should be laid out... <br>
|
|
<TABLE border="1" width="400">
|
|
<TR>
|
|
<TD style="width:80%">
|
|
|
|
</TD>
|
|
<TD style="width:20%">
|
|
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
<BR>
|
|
<BR>
|
|
This is the same table, only it has an input box with width = 100% in the right-most cell<BR>
|
|
Note that the width of the input box is not constrained by its container, as it should be<BR>
|
|
<TABLE border="1" width="400">
|
|
<TR>
|
|
<TD style="width:80%">
|
|
|
|
</TD>
|
|
<TD style="width:20%">
|
|
<button type="button" style="width: 100%">
|
|
This is prettylongtext that goes in the button
|
|
</button>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
<BR>
|
|
<BR>
|
|
This is the same table, only it has an input box with width = auto in the right-most cell<BR>
|
|
Note that we get the same result as above.<BR>
|
|
<TABLE border="1" width="400">
|
|
<TR>
|
|
<TD style="width:80%">
|
|
|
|
</TD>
|
|
<TD style="width:20%">
|
|
<button type="button" style="width: auto">
|
|
This is prettylongtext that goes in the button
|
|
</button>
|
|
</TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
</FORM>
|
|
</BODY>
|
|
</HTML>
|
|
|