html表格没有上边框。其他都有边框

html表格没有上边框。其他都有边框,第1张

table标签里边的border属性,是每个单元格的边框,只有在style里边的border才是最外围的边框,直接在style里边写border:1px #000 solidborder-top:0就可以了。

<style type="text/css">

<!--

.aaa {

border-right-width: 1px

border-bottom-width: 1px

border-left-width: 1px

border-top-style: none

border-right-style: solid

border-bottom-style: solid

border-left-style: solid

border-right-color: #666666

border-bottom-color: #666666

border-left-color: #666666

text-align: center

}

-->

</style>

<table width="100" border="0" cellpadding="0" cellspacing="0">

<tr>

<td class="aaa">表格内容</td>

</tr>

</table>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8337722.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存