我有3個div的,我想顯示爲表格單元格:顯示:在鍍鉻表單元格的問題
<div class="field">
<div class="row">
<label for="name">Subdomain</label>
<input type="text" id="name" name="name">
<div class="subdomain-base ">test</div>
</div>
</div>
這是我使用的CSS:
body{
font-size: 13px;
}
.field {
width:450px;
display: table;
}
.row {
display: table-row;
width: 100%;
}
.row > * {
display: table-cell;
border: 1px solid red;
}
label {
width: 125px;
height: 18px;
}
input {
max-width: none;
min-width: 0;
overflow: auto;
height: 18px;
width: 100%;
}
.subdomain-base {
height: 18px;
width: 1px;
}
.subdomain-base {
color: blue;
font-size: 13px;
}
它的工作原理完美在Firefox 24:
但是,它有在Chrome 30的高度問題(最新):
我一直在嘗試各種各樣的事情來解決Chrome的問題,但它似乎沒有什麼作品。爲什麼鍍鉻獲得額外的高度?
的jsfiddle:http://jsfiddle.net/ahLMH/
問題是,現在的文本對齊到頂部(我希望它與基線對齊)。 – F21