谁知道html语言怎么样能够实现表格
RT,有知道的请说下~令我纠结的蛋疼的问题RE: 谁知道html语言怎么样能够实现表格
本帖最后由 D___C 于 2011-12-15 14:25 编辑 <br /><br />这个是3行3列的表格html代码,我设置的宽度是50%背景色淡绿<div class="blockcode"><blockquote><blockquote><table cellspacing="0" cellpadding="0" width="50%" class="t_table" bgcolor="YellowGreen"></blockquote><blockquote><tbody></blockquote><blockquote><tr></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote></tr></blockquote><blockquote><tr></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote></tr></blockquote><blockquote><tr></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote><td>&nbsp;</td></blockquote><blockquote></tr></blockquote><blockquote></tbody></table></blockquote></blockquote></div>
效果应该是这样的
<table cellspacing="0" cellpadding="0" width="50%" class="t_table" bgcolor="YellowGreen"><tbody><tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody></table> 看二楼 太感谢了~~{:soso_e183:} 网页代码最基本html
这个也忒简单了点吧,用dw一分钟就解决你想要的表格了~~表格的间距为半个像素你做出来才好看!! 无非两种
要么table实现。
要么css+div实现。
或者更好控制js
页:
[1]