gpt4 book ai didi

html - CSS:如何使带有字体图标的文本居中?

转载 作者:行者123 更新时间:2023-11-28 06:21:16 24 4
gpt4 key购买 nike

我构建了一个圆形 div。我想实现数字文本可以在div中水平居中,字体图标位于其右上角,如何实现?div 定义是:

   .rating-score {
position: absolute;
top: 10px;
left: 10px;
width: 50px;
height: 50px;
line-height: 50px;
display: block;
text-align: center;
border-radius: 50%;
color: #fff;
font-size: 20px;
background-color: #ff6666;
color: #fff;
}

.question-mark {
font-size: 12px;
}
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="rating-score">
8.9<span class="fa fa-question-circle question-mark"></span>
</div>

我在这里构建了一个 jsfiddle: round div with text and font icon

最佳答案

position: relative; 赋给 .rating-score 并将 position: absolute; 赋给 .question-mark 并调整 topleft 将提供您预期的输出。

.question-mark {
font-size: 12px;
position: absolute;
right: 10px;
top:1px;
}

Fiddle

关于html - CSS:如何使带有字体图标的文本居中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35570839/

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