gpt4 book ai didi

html - 带有文本的背景图像

转载 作者:行者123 更新时间:2023-11-28 15:09:51 25 4
gpt4 key购买 nike

我的目标是得到这样的结果: enter image description here

现在,我希望文本位于背景图像中。我认为我的问题可能出在我的 block HTML 中?

这是一个概述 enter image description here

.background_grey {
height: 70px;
width: 100%;
margin-top: 0px;
position: relative;
}

.page_title {
font-size: 14px;
}
<img class="background_grey" src="images/subtle_grunge.png" />
<div class="page_title">Register <span class="hometxtcolor">an Account</span></div>

感谢您的帮助!

最佳答案

您必须通过 CSS 使用背景图片,而不是来自 img 元素:

.page_title {
background-image: url(images/subtle_grunge.png);
}
<div class="page_title">
Register
<span class="hometxtcolor">
an Account
</span>
</div>

关于html - 带有文本的背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52503232/

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