我在表格单元格的 ont 行中放置了输入和 2 个按钮。我想将它垂直对齐到控制中心。使其高度相同也是可以接受的,并且它的顶部和底部边界应该在一条线上。
实际上按钮放置在输入的下方。
HTML:
<td>
<input type="text" />
<button>save</button>
<button>cancel</button>
</td>
CSS:
td input[type="text"]
{
height: 18px
margin: 0px
padding: 0px
border: none width: 50px;
}
td button
{
height: 18px;
?????
}