【发布时间】:2020-01-21 20:18:32
【问题描述】:
如何始终将伪元素水平保持在中间?我将它绝对定位为一个百分比值,我理解它是相对于元素的宽度,但在不同的屏幕尺寸上,圆形“OR”在中间并不一致......
见下文:
.content {
display: flex;
flex-direction: row;
justify-content: space-evenly;
text-align: center;
margin: 20px;
}
.cc-content {
width: 50%;
padding: 5px 20px;
position: relative;
background-color: red;
}
.cc-content-1 {
margin-right: 3px;
}
.cc-content-2 {
margin-left: 3px;
}
.cc-content-1:after {
content: 'OR';
display: inline-block;
position: absolute;
vertical-align: middle;
line-height: 60px;
top: 20px;
left: 90%;
z-index: 1;
font-size: 21px;
font-weight: bold;
border-radius: 100%;
width: 60px;
height: 60px;
background-color: #F2F2F2;
color: #006AAD;
}
<div class="content">
<div class="cc-content cc-content-1">
<h3>Header Here</h3>
<p>Lorem Ipsuom gshjgshj gshjgsajhusgs gsaiyusgisysgsyigs</p>
</div>
<div class="cc-content cc-content-2">
<h3>Header Here</h3>
<p>Lorem Ipsuom gshjgshj gshjgsajhusgs gsaiyusgisysgsyigs</p>
</div>
</div>
如果您调整窗口大小,您会看到圆圈略微偏离中心,我如何始终将其保持在绝对位置的中心?不是百分比吗?我尝试使用 flex,因为它位于 flex 容器中,但这似乎没有任何作用。
如何将绝对位置:after 元素水平居中?
【问题讨论】:
标签: html css pseudo-element