2
我已經包括堆棧溢出中的所有流行推薦如何做到這一點,但仍然我的input
比td
有點低height
。使輸入適合td的高度和寬度
貌似關鍵CSS選項display:table-cell;
和width:100%;
重要 - 如果我刪除,沒關係。
但問題是,如何保留input
的height
與table-condensed
?
td.zeon_input_table_cell input {
display: table-cell;
width: 100%;
background-color: transparent
}
td {
border: solid
}
<table id="formset" class="form table table-condensed zeon zeon-row-hover">
<thead>
<th>Column 1</th>
<th>Column 2</th>
</thead>
<tbody>
<tr class="row1">
<td class="zeon_input_table_cell">
<input id="id_form-0-id" name="form-0-id" type="hidden" value="1">
</td>
<td class="zeon_input_table_cell">
<input id="id_form-0-min_delivery_value" name="form-0-min_delivery_value" step="any" type="number" value="5000.0">
</td>
</tr>
dippas,你的答案看起來是正確的,但我不能在JSFIddle中看到它的工作。你可以在那裏提供它,以便我可以正確地勾選它嗎? –
@EdgarNavasardyan在這裏你去[小提琴](https://jsfiddle.net/4hrbbj9p/) – dippas