文本链接上的 Bootstrap3 图标对齐

问题描述 投票:0回答:1
html css twitter-bootstrap-3
1个回答
0
投票

You should add this css to your

.st-list-item
:

position:relative;

并将此类也添加到您的 css 中:

.glyphicon{
    position:absolute;
    right:0;
    top:40%;
}

您可以使用媒体查询为每个屏幕宽度范围指定顶部测量值,因此它将始终垂直居中。

小提琴

© www.soinside.com 2019 - 2024. All rights reserved.