简体   繁体   English

Bootstrap 3表单-如何在表单字段中添加底部边框? (将它们隔开)

[英]Bootstrap 3 forms - How to add bottom border to form fields? (To space them out)

How do you add a bottom border in bootstrap 3 to forms? 如何在引导程序3中向表单添加底部边框? Specifically when using embedded ruby? 特别是在使用嵌入式红宝石时? I simply cannot figure it out spent several hours and nothing seems to work... 我根本无法弄清楚花了几个小时,而且似乎什么也没用。

if I get it correctly this is what you are looking for. 如果我正确理解,这就是您要寻找的。

form{
    border-bottom: 2px solid #777;
}

[a link] ( http://jsfiddle.net/MQP2U/ ) [链接]( http://jsfiddle.net/MQP2U/

Let me know if you have some other issue. 让我知道您是否还有其他问题。

Add a class to the form-group with the border styling you want: 使用所需的边框样式将一个类添加到表单组:

Example Bootply 引导示例

HTML: HTML:

<div class="form-group border">...</div>

CSS: CSS:

.border{
  border-bottom:1px solid #ddd;
  padding-bottom:20px
  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在底部的Bootstrap Form / Page添加填充/空格 - Add padding/space to Bootstrap Form/Page at bottom 如何在表格行之间有边框时隔开表格行? - How to space out a tables rows while having a border between them? 如何在Bootstrap navbar中添加border bottom hover效果? - How to add border bottom hover effect in Bootstrap navbar? 如何添加对齐表单输入字段并在它们之间添加空格? - How to add align forms input fields and add spaces between them? 将边框底部添加到 Bootstrap 导航栏链接 - Add a border-bottom to a Bootstrap Navbar link 如何减少引导程序中表单输入文本字段之间的空间 - How to decrease space between input text fields of form in bootstrap 当flask wtforms 抛出错误时,如何更改Bootstrap 表单输入字段的边框颜色? - How do I change border color of Bootstrap forms input fields when flask wtforms throws error? 我的底部边框在屏幕宽度 <700 像素时不可见。 如何在页面底部和底部边框之间添加一些空间? - My bottom border is not viewable @ screen width <700 px. How do I add some space between the bottom of the page and my bottom border? 如何在边框的底部重复添加图像,该图像在两个图像之间应该有一个空格 - How to add an image on the bottom side of border repeatedly in which it should have a space between two images 如何从引导手风琴中删除底部边框 - How to remove bottom border from bootstrap accordion
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM