我正在使用css form styles from Twitter Bootstrap但是我想减少表单输入字段之间的默认间距。不确定我需要覆盖哪个css元素。
有什么想法吗?
最佳答案
如果使用的是默认设置,则可以减小.line
边距以实现目标。试试这个:
form .line {
margin-bottom: 5px; //adjust to your liking
}
当然,如果您使用的是由引导程序使用的行div分隔的输入字段,例如:
<div class="line">
<label for="input">Full Name</label>
<div class="input">
<input type="text" name="input" size="30">
</div>
</div>
<div class="line">
<label for="input">Last Name</label>
<div class="input">
<input type="text" name="input" size="30">
</div>
</div>
...
演示http://jsfiddle.net/andresilich/qxMVd/1/
关于html - 如何使用Twitter Bootstrap减小输入之间的间隔?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8839262/