mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
17 lines
353 B
HTML
17 lines
353 B
HTML
<html>
|
|
<body>
|
|
|
|
<table width="500px" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td style="width: 300px; background: lightgreen">This text should be on one line</td>
|
|
<td style="width: 200px; background: yellow">Cell A</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td style="width: 100px; background: lightblue" colspan="2">Cell B</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|