gpt4 book ai didi

html - 居中绝对 div 中的隐藏文本元素

转载 作者:太空宇宙 更新时间:2023-11-03 22:41:02 26 4
gpt4 key购买 nike

我无法让 h2 header 出现在绝对定位的元素中。我已经浏览了可能的错误列表,但似乎仍然找不到答案。 h2 元素,在检查屏幕后,由于某种原因高度为 0。

Here's a codepen link

HTML:

  <div class="gallery">

<img class='gallery-image' src='https://dummyimage.com/200x400/000000/ffffff'>
<img class='gallery-image' src='https://dummyimage.com/200x400/000000/ffffff'>
<img class='gallery-image' src='https://dummyimage.com/200x400/000000/ffffff'>
<img class='gallery-image' src='https://dummyimage.com/200x400/000000/ffffff'>
<a class='call-action' href='#'>
<h2>Shop Now.</h2>
</a>
</div>

CSS:

.gallery {

position: absolute;
z-index: 2;
width: 100%;
display: flex;
flex-wrap: wrap;
font-size: 0;

img {

display: block;
width: 25%;
height: 50%;

@media only screen and (max-width: 500px) {

width: 50%;
height: 100%;

}

}

}

$call-action-width: 150px;
$call-action-height: 50px;

.call-action {

width: $call-action-width;
height: $call-action-height;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 0;
background-color: white;
opacity: 0.5;
border-radius: 5%;

h2 {

position: relative;
color: black;
font-size: 2em;

}

}

抱歉,如果答案很明显 - 我刚刚重新开始练习编码,而且我非常粗糙。

感谢您的帮助!

最佳答案

问题出在你的font-size .你不能有 em position: absolute 内的字体<div> , 作为 em是相对于 parent 元素的。

只需切换到固定大小的字体(例如 px )即可解决问题。我创造了一支新笔来展示这个 here .

不幸的是,这意味着您的字体无法响应。如果你想要响应式字体,你要么必须使用一些媒体查询,要么重组你的 HTML 以便 <h2>元素有一个 position: relative parent (所以你可以使用 em )。

希望对您有所帮助! :)

关于html - 居中绝对 div 中的隐藏文本元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43990670/

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