您的位置:首页 > 其它

table的边框线的设置

2014-05-19 13:05 155 查看
http://hi.baidu.com/weisuotang/item/a1d98ec298c0aa49a8ba9447

/article/6002235.html

回头练习一下。

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
table
{
border-collapse: collapse;
text-align: center;
width: 200px;
border: 2;<%--不知道这个干什么用--%>
}
td
{
border: solid #000 1px;
}
</style>

</head>
<body>
<form id="form1" runat="server">
<div>
<table>
<tr>
<td>
姓名
</td>
<td>
性别
</td>
<td>
年龄
</td>
</tr>
<tr>
<td>
小明
</td>
<td>
男
</td>
<td>
12
</td>
</tr>
</table>

</div>
</form>
</body>
</html>


View Code

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: