当前位置: 代码迷 >> Web前端 >> table tr td框子去除
  详细解决方案

table tr td框子去除

热度:291   发布时间:2013-10-28 11:21:45.0
table tr td边框去除
<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;指的要所有边的边框。
  相关解决方案