gpt4 book ai didi

html - 跨多个内联元素扩展底部边框

转载 作者:太空宇宙 更新时间:2023-11-04 00:07:12 25 4
gpt4 key购买 nike

在我的情况下,我有一个标题和一些与其内联的单选按钮,用于控制下面显示的内容。出于样式原因,我希望页眉的底部边框通过以下元素延伸到其容器的边缘。

我目前的情况:

<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/

有没有办法让底部边框一直延伸到整个页面?

最佳答案

只需使用一个 div 元素来包装所有内容。这是 an example .

请注意,通过使用包装 div,您可以摆脱之前使用的所有类。另请注意,label 元素的 for 属性需要相应的 ID。

我已经在上面链接的 fiddle 示例中修复了所有这些问题。

关于html - 跨多个内联元素扩展底部边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14446408/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com