gpt4 book ai didi

html - Bootstrap Glyph 与圆形边框稍微偏离中心对齐

转载 作者:太空宇宙 更新时间:2023-11-04 10:53:45 25 4
gpt4 key购买 nike

以下代码使用 bootstrap 字形和 50% 的边框半径在圆圈中显示图标。然而,尽管设置了 text-align 属性,但图标并不是完全居中(稍微偏左)。这是为什么?

<div class="glyphicon-ring white-ring"> 
<span class="glyphicon glyphicon-chevron-down glyphicon-bordered" style="color:white"></span>
</div>

CSS:

   .glyphicon-ring {
width: 90px;
height: 90px;
border-radius: 50%;
border: 6px solid #54534A;
color: #54534A;
display: inline-table;
text-align: center;
font-size: 40pt;
}

JSFiddle

最佳答案

你应该在 span 样式中添加 line-height; & 在 div 中添加 margin 如下所示

.glyphicon-ring {
display:inline-block;
position:relative;
margin:0 auto 0 auto;
border: 6px solid #54534A;
color: #54534A;
border-radius:50%;
text-align:center;
width: 90px;
height: 90px;
font-size:40pt;
}

跨度样式是:

<div class="glyphicon-ring white-ring"> 
<span class="glyphicon glyphicon-chevron-down glyphicon-bordered" style="margin:0; line-height:77px; text-align: center;"></span>

关于html - Bootstrap Glyph 与圆形边框稍微偏离中心对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34815042/

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