gpt4 book ai didi

html - 在中心对齐字段集图例

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

HTML

<fieldset class="Fieldset">
<legend class="Legend" id="Legend">Add</legend>
...

CSS

.Fieldset
{
border: 1px solid #CCC;
border-radius: 5px;
padding: 10px;
}

.Legend
{
border: medium none;
left: 40%;
margin: 0 auto;
padding: 0 10px;
position: relative;
text-align: center;
width: auto;
color: #3C6EAC;
font-size: 18px;
font-weight: bold;
}

Firefox 中,图例居中对齐。但在 Chrome 中则不然。

最佳答案

添加此 CSS,删除 margin :auto & left:40% 然后添加 margin-left:40%.

.Fieldset {
border: 1px solid #CCC;
border-radius: 5px;
padding: 10px;
}

.Legend {
border: medium none;
margin-left: 40%;
padding: 0 10px;
position: relative;
text-align: center;
width: auto;
color: #3C6EAC;
font-size: 18px;
font-weight: bold;
}
<fieldset class="Fieldset">
<legend class="Legend" id="Legend">Add</legend>
</fieldset>

View on JSFiddle

关于html - 在中心对齐字段集图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23355611/

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