gpt4 book ai didi

html - 不要在背景图像的 div 中显示文本

转载 作者:太空狗 更新时间:2023-10-29 16:52:16 24 4
gpt4 key购买 nike

我有这个 div:

<div class="inauguration-image">
I do not want this text to display, just here for description
</div>

这是它的CSS:

.inauguration-image {
margin-top:5px;
margin-left:auto;
margin-right:auto;
background: url("/images/inauguration_block.png") no-repeat;
position:relative;
width:760px;
height:552px;
}

我不想显示文本,我该怎么做呢?

最佳答案

.inauguration-image {
margin-top:5px;
margin-left:auto;
margin-right:auto;
background: url("/images/inauguration_block.png") no-repeat;
position:relative;
width:760px;
height:0;
padding-top:552px;
overflow:hidden;
}

设置height:0overflow:hidden 隐藏你的文本; padding-top:552px 使元素足够大以显示背景图像。这是一个非常便携的解决方案。

关于html - 不要在背景图像的 div 中显示文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/466318/

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