作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将三个输入字段排成一行,彼此相邻留出一点空间,这样看起来并不奇怪。无论如何,第三个输入总是换行,这是为什么以及如何解决?
我要达到的效果,看图
HTML:
<div id="form">
<form>
<input type="text">
<input type="text">
<input type="text">
</form>
</div>
CSS:
#form{
width: 600px;
border: 1px solid black;
}
#form input {
width: 33.33%;
display: inline-block;
margin: 0 1.1% 0 0;
padding: 0;
}
最佳答案
减少输入的宽度百分比。这些百分比加上利润率。
#form {
width: 600px;
border: 1px solid black;
}
#form input {
width: 31.63%;
display: inline-block;
margin: 0 1.1% 0 0;
padding: 0;
}
#form input:last-child {
margin-right: 0
}
<div id="form">
<form>
<input type="text">
<input type="text">
<input type="text">
</form>
</div>
或者,如果你能支持flex布局,这是最干净的。 不需要边距,因为 justify-content: space-between
会处理间距,只要输入百分比允许(添加到 < 100%)。
#form > form {
width: 600px;
border: 1px solid black;
display: flex;
justify-content: space-between;
}
#form input {
width: 31%;
}
<div id="form">
<form>
<input type="text">
<input type="text">
<input type="text">
</form>
</div>
关于html - 将输入字段排成一行以适应整个容器宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26684272/
我是一名优秀的程序员,十分优秀!