1.想做一个两行五列的表格,做到最后其他都好表格的线都没了,求各位大佬帮忙看看ヾ(•ω•`)o
2.html代码
<div id="lead">
<table id="one">
<tr>
<td rowspan="5">LLSS</td>
<td>Radio</td>
</tr>
<tr>
<td>Live</td>
</tr>
<tr>
<td>Activities</td>
</tr>
<tr>
<td>Latest news</td>
</tr>
<tr>
<td>Member introduce</td>
</tr>
</table>
</div>
3.CSS代码
lead{
position: absolute;
left: 100px;
top: 300px;
margin: 0;
}
one{
/*-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;*/
width: 200px;
height: 300px;
border: 10px #F01014;
text-align: center;
background-color: aqua;
}
one td{
width:"100";
border: 1px #E0080C;
}
4.表格图片
先谢过各位大佬了<(_ _)>
试试这样写: