gpt4 book ai didi

html - 应用与 legend 标签相同的 CSS

转载 作者:行者123 更新时间:2023-11-28 16:58:11 24 4
gpt4 key购买 nike

我想在我的 html 组件周围创建一个边框。可以使用 HTML 图例元素,但我想在表单之外使用它。

HTML 图例:http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_fieldset

我试过了,但标题和边框有问题。下面是相同的jsfiddle。

.temp {
border: 1px solid #999;
margin-top: 20px;
padding: 20px;
position: relative;
}

http://jsfiddle.net/alpeshprajapati/a6a93fg9/1/

如何实现与图例相同的输出?谢谢。

最佳答案

你几乎在那里。使标记看起来像 legend 的最后一步是将 background-color 添加到与 background 匹配的 span -.temp 的颜色 和包含它的元素。这确保了 border.temp 不会显示在文本后面(因为 background-colortransparent默认)。

.temp > span {
background-color: white;
font-size: 21px;
left: 2%;
position: absolute;
top: -15px;
}
.temp {
border: 1px solid #999;
margin-top: 20px;
padding: 20px;
position: relative;
}
<div class="temp">
<span>Permissions</span>
<table class="table cs-table-no-bordered table-striped">
<thead>
<tr>
<th>Modules</th>
<th class="text-center">Edit</th>
<th class="text-center">Delete</th>
<th class="text-center">View</th>
<th class="text-center">All</th>
</tr>
</thead>
<tbody>
<tr>
<td>M1</td>
<td class="text-center">
<input type="checkbox" />
</td>
<td class="text-center">
<input type="checkbox" />
</td>
<td class="text-center">
<input type="checkbox" />
</td>
<td class="text-center">
<input type="checkbox" />
</td>
</tr>
</tbody>
</table>
</div>

关于html - 应用与 legend 标签相同的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31742924/

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