我想放置具有不同边框颜色的圆形边框图标。根据需要链接图像。我使用顺风 css 类设计了圆角,我不知道如何赋予不同的边框颜色。
问问题
30 次
1 回答
0
div
这是一个使用两个元素的非常简单的示例。
.outer {
height: 100px;
width: 100px;
background: linear-gradient(blue, purple);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.inner {
height: 90px;
width: 90px;
background-color: white;
display: block;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
<div class="outer">
<div class="inner">F</div>
</div>
<p>Facebook</p>
于 2022-02-15T07:33:55.620 回答