CSS Table styling won't work
This question already has an answer here:
table{
border: 1px solid #ccc;
cellpadding: 3px;
cellspacing: 0px;
width: 500px;
}
td{
text-align:center;
}
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<table>
<tr>
<td>
captain
</td>
</tr>
</table>
</body>
</html>
链接地址: http://www.djcxy.com/p/16948.html
上一篇: 你如何禁用单元格中的填充?
下一篇: CSS表格样式不起作用