我需要垂直对齐它的父级中的输入及其标签。
我尝试了表格单元格方法,但没有运气:
<div class="holder">
<label>Text input: </label>
<input type="text" class="input" />
</div>
.holder{
height: 400px;
width: 400px;
background: tomato;
display: table;
}
.input{
display: table-cell;
vertical-align: middle;
}
答案 0 :(得分:2)
答案 1 :(得分:0)
使表格单元格.holder
。
.holder{
height: 400px;
width: 400px;
background: tomato;
display: table-cell;
vertical-align: middle;
}
.input{
/* remove the styles */
}
答案 2 :(得分:0)
尝试父级的line-height
属性。将其设置为400px
将使所有内容垂直对齐。