我在盒子里做了一张桌子。默认情况下,表格在框内居中,但我希望它接触框的底部边框。我连续有两个单元格,两个单元格都有我需要让它们接触底部边框的图片。
<html>
<head>
<link href="design.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="box1">
<table width="614" border="0" cellspacing="0" cellpadding="0">
<tr align="center">
<td>
<img src="TL.png">
</td>
<td width="1" class="vertical"></td>
<td>
<img src="TR.png">
</td>
</tr>
</table>
</div>
</body>
.box1{
width: 614px;
margin: 0px;
position:absolute;
border: 1px solid #d0d0d0;
padding: 20px;
border-radius: 20px 20px 20px 20px;
overflow: auto;}
.vertical{
border-right: 1px solid #d0d0d0;
width: 0px;
height: 250px;
float: left;
box-shadow: 1px 1px 0px #ffffff;}
有人可以解释一下吗?