我尝试使用fieldset,并期待输出如下。
但我只是在顶部有一条水平线。
然后我查看了源代码,找到了2个字段集选择器,并且对于图例也是如此。
https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
fieldset {
padding: .35em .625em .75em;
margin: 0 2px;
border: 1px solid silver;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 20px;
font-size: 21px;
line-height: inherit;
color: #333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
legend {
padding: 0;
border: 0;
}
如果我在检查器中评论第一个fieldset和第一个图例标记。我得到了预期的输出。还有另外一种方法,就是在bootstrap源中对这些选择器进行评论,这是我的工作方式。
<fieldset>
<legend> Name </legend>
<input type="text">
</fieldset>
感谢。
答案 0 :(得分:2)
您看到的行似乎是fieldset
和legend
的默认Bootstrap样式。
从这里可以看出:
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css');
&#13;
<fieldset>
<legend> Name </legend>
<input type="text" />
</fieldset>
&#13;
但是你可以覆盖它。只需确保覆盖规则在Bootstrap样式表之后。
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css');
fieldset {
border: 1px solid gray;
margin: 10px;
padding: 10px;
}
legend {
border: 0;
margin: auto;
width: auto;
}
&#13;
<fieldset>
<legend> Name </legend>
<input type="text" />
</fieldset>
&#13;
还需要进行一些调整才能得到您想要的确切结果......
进行一些调整:
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css');
fieldset {
border: 1px solid gray;
margin: 1em;
padding: 1em;
background: white;
display: inline-block;
min-width: 350px;
-webkit-box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, .75);
-moz-box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, .75);
box-shadow: 0px 0px 5px 2px rgba(50, 50, 50, .75);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
legend {
border: 0;
margin: 0;
padding: .5em;
width: auto;
background: white;
font-size: 1em;
}
label {
display: block;
font-weight: 100;
}
input{ margin: 0; }
&#13;
<fieldset>
<legend>What is your favorite color</legend>
<label><input type="radio" name="color" /> Red</label>
<label><input type="radio" name="color" /> Green</label>
<label><input type="radio" name="color" /> Blue</label>
</fieldset>
&#13;