50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
|
<html>
|
|
<head>
|
|
<!-- testcase: tables_width_px.html
|
|
description: HTML Text Markup Element, TABLE WIDTH PIXELS -->
|
|
<!-- Author: Chris Petersen Date: 8/5/98 -->
|
|
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
|
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
|
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
|
<!-- Purpose:To test the TABLE tag.-->
|
|
<!-- Expected result: A table should be displayed in the window with width set by pixel value-->
|
|
<title>Web Browser Web View (HTML): Document TABLE WIDTH PIXELS</title>
|
|
</head>
|
|
<body>
|
|
This test case shows how WIDTH can set the width of the table to a fixed size using PIXELS.
|
|
This first table has a width of 400 pixels.
|
|
<table width=400>
|
|
<tr>
|
|
<td>Navigator</td>
|
|
<td>Messenger</td>
|
|
<td>Collabra</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Composer</td>
|
|
<td>Calendar</td>
|
|
<td>Netcaster</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
While, this second table has a width of 300 pixels.
|
|
<table width=300>
|
|
<tr>
|
|
<td>Navigator</td>
|
|
<td>Messenger</td>
|
|
<td>Collabra</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Composer</td>
|
|
<td>Calendar</td>
|
|
<td>Netcaster</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|