gpt4 book ai didi

html - 在 div 下中心之后的绝对位置

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

我对绝对位置后有疑问。我无法在 div 之后将内容居中。我的代码:enter link description here

我检查了其他帖子,但不幸的是他们没有帮助我。

.nav {
height: 20px;
}
.w {
border: 1px solid red;
color: red;
display: inline-block;
padding: 15px;
height: 20px;
}
.e:after {
content: "W";
display: block;
position: absolute;
line-height: 0;
margin: 0 auto;
bottom: 350px;
border: 1px solid blue;
height: 20px;
width: 20px;
text-align: center;
}
<nav class="nav">
<ul class="q">
<li class="w">
<a href="" class="e">Testttttt</a>
</li>

<li class="w">
<a href="" class="e">Testtttttttttt</a>
</li>

<li class="w">
<a href="" class="e">Testttttttttttttttt</a>
</li>

<li class="w">
<a href="" class="e">Test</a>
</li>
</ul>
</nav>

最佳答案

我相信你想把 :after 伪元素居中。在为元素分配 position:absolute 后,您不能使用 text-align:center 将元素居中。您必须使用左、右位置以及负边距。试试这个代码。

.e{
position: relative;
}
.e:after {
content: "W";
display: block;
position: absolute;
line-height: 0;
bottom: -50px;
border: 1px solid blue;
height: 20px;
width: 20px;
left: 50%;
margin-left: -10px;
}

关于html - 在 div 下中心之后的绝对位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49873610/

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