WEB标准中细线表格的实现方法
点击次数:33 次 发布日期:2008-11-21 16:11:25 作者:源代码网
|
源代码网推荐源代码网整理以下随着web标准的广泛传播,表格渐渐被我遗忘,但是表格还是有它优秀的一面。数据处理用表格的确省了不少麻烦!这个是细表格的代码,并且通过了标准验证!
源代码网整理以下
|
源代码网整理以下以下为引用的内容: <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>细线表格简单实现</title> <style type="text/css"> table{border:1px solid #000;border-width:1px 0 0 1px;margin:2px 0 2px 0;text-align:center;border-collapse:collapse;} td,th{border:1px solid #000;border-width:0 1px 1px 0;margin:2px 0 2px 0;text-align:left;} th{text-align:center;font-weight:600;font-size:12px;background-color:#F4F4F4;} </style>
源代码网整理以下</head>
源代码网整理以下<body> <table width="236"> <tr> <td> s</td> <td>s </td> <td> s</td> <td> s</td> <td> s</td> <td> s</td> </tr> </table> </body>
|
源代码网供稿. |