table 细边框

简介: DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" /> 
<title>css table 之1px边框单元格--脚本之家</title> 
</head>
<body> 
<style type="text/css">   
.myTable,.myTable td {   
    border:1px solid #cccccc;   
    border-collapse:collapse; 
}   
</style>  
<table width="200" class="myTable" >   
<tr>   
<td>脚本之家</td>   
<td>脚本之家</td>   
<td>脚本之家</td>   
</tr>   
<tr>   
<td>脚本之家</td>   
<td>脚本之家</td>   
<td>脚本之家</td>   
</tr>   
<tr>   
<td>脚本之家</td>   
<td>脚本之家</td>   
<td>脚本之家</td>   
</tr>   
</table>
</body> 
</html>
详细出处参考:http://www.jb51.net/article/15462.htm
如果 table 没有 class 属性的话可以用 :
<style type="text/css">   
table, td {   
    border:1px solid #cccccc;   
    border-collapse:collapse; 
}   
</style>  
注意 table和 td 之间有个 “,”逗号。
相关文章
|
12月前
|
JSON 前端开发 JavaScript
bootstrap table表格内容居中对齐
bootstrap table表格内容居中对齐
90 0
使用bootstrap-table-fixed-columns固定表格列时底部滑动出现BUG
使用bootstrap-table时数据列过多,又想某列特殊显示?推荐你使用bootstrap-table-fixed-columns来解决吧!使用时需要注意 bootstrap-table和bootstrap-table-fixed-columns尽量保持一致,以防奇怪问题出现
844 0
使用bootstrap-table-fixed-columns固定表格列时底部滑动出现BUG
table怎么实现部分列固定宽度,其它列宽自适应拉伸
table怎么实现部分列固定宽度,其它列宽自适应拉伸
495 0
table怎么实现部分列固定宽度,其它列宽自适应拉伸
|
前端开发
table布局的一些总结
table-layout作用就是让表格布局固定,使表格的宽度不会根据内容多少而动态变化。
163 0
table布局的一些总结
|
小程序 前端开发 iOS开发
针对不规则图案阴影 drop-shadow
针对不规则图案阴影 drop-shadow
283 0
针对不规则图案阴影 drop-shadow
|
XML 数据格式