我有一种情况,我有一个标题和一些内联的单选按钮,它们控制下面显示的内容。出于样式原因,我希望标题的底部边框通过以下元素延伸到其容器的边缘。
我现在的情况:
<h2 class="header">this is the header</h2>
<label class="l" for="a">this is a label</label>
<input value="a" name="options" type="radio"/>
<label class="l" for="b">this is another label</label>
<input type="radio" name="options" value="b"/>
CSS:
label.l{
display: inline-block;
margin: 4px;
color: red;
}
h2.header {
border-bottom: 1px solid blue;
display: inline;
margin: 4px;
font-size: 200%;
}
结果:http: //jsfiddle.net/F7pzd/1/
有没有办法让底部边框一直延伸到整个页面?