在frontpage中,如何令table的某一个cell有边界,其他cell都没有?(20分)

  • 主题发起人 主题发起人 touchme_1
  • 开始时间 开始时间
T

touchme_1

Unregistered / Unconfirmed
GUEST, unregistred user!
这个html语句怎样写?谢谢!
 
没办法就变通一下,划成几个table不就行
 
只能化成几个Table了
 
用DREAMWAVE可以实现!!!
 
但Dreamwaver依然要求Table本身有边界。
 
<p><table border="0" width="100%"><br>
<tr><br>
<td width="33%">1</td><br>
<td width="33%">2</td><br>
<td width="34%">3</td><br>
</tr><br>
<tr><br>
<td width="33%">4</td><br>
<td width="33%" style="border: 1 solid red">5</td><br>
<td width="34%">6</td><br>
</tr><br>
<tr><br>
<td width="33%">7</td><br>
<td width="33%">8</td><br>
<td width="34%">9</td><br>
</tr><br>
</table><br>
</p>

<p>效果是:</p>

<table border="0" width="100%">
<tr>
<td width="33%">1</td>
<td width="33%">2</td>
<td width="34%">3</td>
</tr>
<tr>
<td width="33%">4</td>
<td width="33%" style="border: 1 solid red">5</td>
<td width="34%">6</td>
</tr>
<tr>
<td width="33%">7</td>
<td width="33%">8</td>
<td width="34%">9</td>
</tr>
</table>
 
是这样了,用table嵌套或用CSS样式
 
多人接受答案了。
 
后退
顶部