gpt4 book ai didi

html - 使用CSS在彼此内部创建4个圆圈

转载 作者:行者123 更新时间:2023-11-28 15:49:04 25 4
gpt4 key购买 nike

我正在尝试使用 CSS 将 4 个圆圈(没有背景颜色,只有边框颜色)与最后一个圆圈内的文本放在一起。

示例:http://imgur.com/a/5vUKI

知道如何做到这一点吗?

最佳答案

给你。这应该可以帮助您入门。

.circle {
border-radius: 50%;
background: transparent;
border: 2px solid red;
width: 500px;
height: 500px;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}

.c2 {
width: 400px;
height: 400px;
border-color: blue;
}

.c3 {
width: 300px;
height: 300px;
border-color: yellow;
}

.c4 {
width: 200px;
height: 200px;
}
<div class="circles">

<div class="circle c1">
<div class="circle c2">
<div class="circle c3">
<div class="circle c4"></div>
</div>
</div>
</div>

</div>

关于html - 使用CSS在彼此内部创建4个圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43368774/

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