table tr td边框去除
程序员文章站
2024-02-24 09:06:19
...
<html>
<head>
<style type="text/css">
table{ width:500px; }
table tr td{ border-top:#FF0000 solid 1px; width:50%; background-color:#00CC33; text-align:center; line-height:24px;}
</style>
</head>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>2</td>
</tr>
</table>
</html>
追加点哈
border-top:#FF0000 solid 1px;指的要上边框。
border-bottom:#FF0000 solid 1px;指的要下边框。
border-left:#FF0000 solid 1px;指的要左边框。
border-right搜索:#FF0000 solid 1px;指的要右边框。
border:#FF0000 solid 1px;指的要所有边的边框。
推荐阅读
-
table tr td边框去除
-
关于table中,td的上下边框间距问题_html/css_WEB-ITnose
-
js常用的功能 table>tr>td
-
布局神器table之tr,th及td的使用讲解
-
JS动态创建Table,Tr,Td并赋值的具体实现_javascript技巧
-
table tr td 问题_html/css_WEB-ITnose
-
table tr td 问题_html/css_WEB-ITnose
-
关于table中,td的上下边框间距问题_html/css_WEB-ITnose
-
Jquery 遍历 table的tr 和td
-
js中获取 table节点各tr及td的内容简单实例