围绕图例的厚字段集圆角边框
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了围绕图例的厚字段集圆角边框相关的知识,希望对你有一定的参考价值。
我需要使连接到图例的字段集边框看起来是圆的。使用CSS做到这一点的最简单方法是什么?
fieldset {
text-align: center;
border: 20px solid;
border-radius: 50px;
}
legend {
width: 250px;
}
<form>
<fieldset>
<legend> <span>title</span></legend>
<p>data goes here </p>
</fieldset>
</form>
答案
您可以使用矩形阴影添加曲线
fieldset {
text-align: center;
border: 20px solid;
border-radius: 50px;
}
legend {
width: 250px;
border-radius: 50px;
box-shadow: 0 0 0 5px #fff;
}
<form>
<fieldset>
<legend> <span>title</span></legend>
<p>data goes here </p>
</fieldset>
</form>
另一答案
您可以删除图例标记并尝试使用此html代码。
<form>
<fieldset>
<span>title</span>
<p>data goes here </p>
</fieldset>
</form>
以上是关于围绕图例的厚字段集圆角边框的主要内容,如果未能解决你的问题,请参考以下文章