gpt4 book ai didi

css - 边框半径 50%,凹边框使用伪元素

转载 作者:行者123 更新时间:2023-12-04 19:11:03 29 4
gpt4 key购买 nike

我想创建一个 border-radius 为 50% 并具有蓝色背景的 div,这样曲线的右侧部分应该用另一种颜色填充,比如浅蓝色。我们如何使用 css 伪元素做到这一点

#circle{
width: 50px;
height: 50px;
background: blue;
border-radius: 50%;
}

enter image description here

最佳答案

您可以使用以下解决方案:

#circle{
width: 50px;
height: 50px;
background: blue;
border-radius: 50%;
position:relative;
}
#circle:after {
content:"";
display:block;
position:absolute;
left:50%;
top:0;
height:100%;
width:50%;
background:lightblue;
z-index:-1;
}
<div id="circle"></div>

关于css - 边框半径 50%,凹边框使用伪元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47811278/

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