gpt4 book ai didi

css - 中心只需要一个圆圈

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:05 24 4
gpt4 key购买 nike

我只想要中心的一个圆圈而不是围绕它的圆圈。我不想更改当前代码(渐变样式)。我该如何实现?

 
#bar {
position: relative;
height: 200px;
width: 600px;
background: linear-gradient(to left, yellow 99.9%, blue 99.9%), radial-gradient(circle at 50% 50%, yellow 50%, transparent 10%);
background-position: 50% 100px, 50% 50%;
background-size:100% 15px, 100px 100px;
background-repeat: no-repeat, repeat-x;
}
<div id="bar"></div>

最佳答案

移除repeat-x

#bar {
position: relative;
height: 200px;
width: 600px;
background: linear-gradient(to left, yellow 99.9%, blue 99.9%), radial-gradient(circle at 50% 50%, yellow 50%, transparent 10%);
background-position: 50% 100px, 50% 50%;
background-size:100% 15px, 100px 100px;
background-repeat: no-repeat;
}
<div id="bar"></div>

关于css - 中心只需要一个圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41913550/

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