html带圆圈的边框,html–带CSS的半圆(仅限边框,轮廓)您可以使⽤
borderboxborder-top-left-radius和
border-top-right-radius属性根据框的⾼度(和添加的边框)对框上的⾓进⾏四舍五⼊。
然后在框的顶部/右侧/左侧添加边框以实现效果。
⼲得好:
.half-circle {
width: 200px;
height: 100px; /* as the half of the width */
background-color: gold;
border-top-left-radius: 110px; /* 100px of height + 10px of border */
border-top-right-radius: 110px; /* 100px of height + 10px of border */
border: 10px solid gray;
border-bottom: 0;
}
或者,您可以添加box-sizing: border-box到框中,以计算框的宽度/⾼度,包括边框和填充。
.half-circle {
width: 200px;
height: 100px; /* as the half of the width */
border-top-left-radius: 100px;
border-top-right-radius: 100px;
border: 10px solid gray;
border-bottom: 0;
-
webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
(Demo⽆背景颜⾊)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论