gpt4 book ai didi

html - 在顶部图像的 DIV 内添加文本

转载 作者:行者123 更新时间:2023-11-28 10:13:02 24 4
gpt4 key购买 nike

我试图在图像顶部的 Div 中心添加文本“Post”,但它添加在图像旁边:

HTML:

<div id="Post">
<span class="Post">Post
<img src="images/ask_post.png" />
</span>
</div>

CSS:

#Post {
position:absolute;
background-image:url('../images/ask_post.png') no-repeat;
left:741px;
top:157px;
}

最佳答案

首先从 div 元素中删除图像,文本不会位于该图像之上,只有背景。其次,玩转 background properties直到它看起来像你想要的那样。

我的猜测是您需要调整 background-sizebackground-position .

<div id="Post">
<span class="Post">Post</span>
</span>

查看 background-size:cover; 是否是您需要的。您可能还需要调整 div 的 heightwidth 以获得您想要的内容。

关于html - 在顶部图像的 DIV 内添加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24316471/

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