TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Subject:Re: Tables and web browsers From:Geoff Lane <geoff -at- GJCTECH -dot- FORCE9 -dot- NET> Date:Mon, 9 Nov 1998 18:13:51 -0000
The following works in both IE4 and Navigator 4:
<table width="50%" border="2">
<tr>
<td width="50%">Some stuff or other.</td>
<td width="50%">Some other stuff.</td>
</tr>
</table>
Use the width attribute of the TABLE tag to set the overall table width.
Use the width attribute of the TD tag to set the individual column widths.
The example above creates a table with width 50% of the browser window, and
sets each column width to 50% of the table width.
HTH,
Geoff Lane
Cornwall, UK
geoff -at- gjctech -dot- force9 -dot- net
-----Original Message-----
From: Technical Writers List; for all Technical Communication issues
[mailto:TECHWR-L -at- LISTSERV -dot- OKSTATE -dot- EDU]On Behalf Of Chrystine Pelton
Does anyone know how to set equal column width for a table that applies
in both Netscape and Explorer? I know there are tools within Netscape
and other WSIWYG editors but is there any HTML code that will set this
option across browsers?