定位a:选择器之前

时间:2016-03-24 13:06:18

标签: css css3 icons pseudo-element

添加:before选择器时,在此方案中,我尝试插入电话图标以显示在.front-page-contact div上方。理想情况下,它将位于.front-page-contact div。

中的文本上方

如何定位此选择器以实现上述结果?

 .front-page-contact .widget:nth-of-type(1) {
    text-align: center;
 }

.front-page-contact {
    background-color: #00AFBE;
    padding: 20px 0;
}

.front-page-contact h2 {
    font-size: 26px;
    color: #fff;
    margin: 0;
    position: relative;
}

.front-page-contact h2:before {
    font-family: Ionicons;
    content: "\f4b8";
    font-size: 40px;
    background-color: tomato;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 20px;
    display: block;
    position: relative;
    line-height: 1em;
    margin: 0 auto;
}

截图: Current position of the Pseudo element

1 个答案:

答案 0 :(得分:6)

给h2 position: relative然后伪元素将自己绝对定位到h2而不是页面。没有看到标记就很难说更多。

修改

将其更改为:

.front-page-contact h2:before {
    font-family: Ionicons;
    content: "\f4b8";
    font-size: 40px;
    background-color: tomato;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 20px;
    display: block;
    position: absolute;
    line-height: 1em;
    left: calc(50% - 40px);
    top: -60px;
}

根据需要调整左/上