标签:style html htm ad type table text c
<html>
<head>
<style type="text/css">
table,th,td{
border:1px solid blue;
border-collapse:collapse;
}
</style>
</head>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Bill</td>
<td>Gates</td>
</tr>
<tr>
<td>Steven</td>
<td>Jobs</td>
</tr>
</table>
</body>
</html>
标签:style html htm ad type table text c
原文地址:http://www.cnblogs.com/itjeff/p/3919553.html