gpt4 book ai didi

html - CSS 标准化填充

转载 作者:太空宇宙 更新时间:2023-11-03 20:49:49 25 4
gpt4 key购买 nike

我有以下 CSS:

.form td:not(:last-child) {
padding-right: 15px;
}

.form td:first-child {
padding-left: 3px;
}

.form td:last-child {
padding-right: 5px;
}

input,select {
width: 100%;
}

我的 HTML 是:

<table class="form">
<tr>
<td><input value="foo" /></td>
<td><input value="bar" /></td>
<td>
<select>
<option>nono1</option>
<option>nono2</option>
<option>nono3</option>
</select>
</td>
<td><input value="foo2" /></td>
</tr>
<tr>
<td><input value="foo2" /></td>
<td>
<select>
<option>nono1</option>
<option>nono2</option>
<option>nono3</option>
</select>
</td>
<td><input value="foobar2" /></td>
<td><input value="foo22" /></td>
</tr>
</table>

JSFiddle link

这会产生这样的东西: enter image description here

如何使 selectinput 元素的确切大小相匹配?

谢谢!

最佳答案

使用box-sizing

input,select {
width: 100%;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

关于html - CSS 标准化填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17171429/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com