淘先锋技术网

首页 1 2 3 4 5 6 7

CSS圆圈感叹号可以用于提醒用户,突出重要的信息。圆圈可以通过CSS中的边框-radius属性来实现,而感叹号则可以通过CSS中的content属性和伪类来添加。

.circle {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: red;
color: white;
text-align: center;
line-height: 20px;
font-size: 14px;
font-weight: bold;
margin-right: 10px;
}
.circle:before {
content: "!";
}

上面的代码中,我们首先创建了一个宽高相等、边缘为50%圆角的圆形,并设置了背景色为红色、文本颜色为白色、字体大小为14px、字重为粗体以及右边距为10px。然后通过:before伪类来添加一个感叹号内容。

使用时,只需要在HTML中添加.circle类就可以了:

<p>这个地方需要注意!<span class="circle"></span></p>

效果如下:

这个地方需要注意!