添加: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;
}
截图:
答案 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;
}
根据需要调整左/上