Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Find an equivalent for rules="none" in NN

Status
Not open for further replies.

2ni

Programmer
Mar 21, 2002
36
FR
In my 'TABLE' tag i often use the properties 'rules' and 'frame'. Is there an equivalent which works in NN ?

an example :
<table border=1 rules=none bordercolor=#DADADA cellspacing=0 cellpadding=0>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
</tr>
</table>

Thanx, and sorry for my bad english !!
 
put your table inside another table like so:
Code:
<table border=&quot;1&quot; bordercolor=&quot;#DADADA&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
	<tr>
		<td>
			<table border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;>
				<tr>
					<td>1</td>
					<td>2</td>
				</tr>
				<tr>
					<td>1</td>
					<td>2</td>
				</tr>
			</table>
		</td>
	</tr>
</table>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top