现在,我希望文本位于背景图像中。 我认为我的问题可能出在HTML中吗?
.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>
谢谢您的帮助!
答案 0 :(得分:1)
您必须通过CSS使用背景图片,而不是通过img元素:
.page_title {
background-image: url(images/subtle_grunge.png);
}
<div class="page_title">
Register
<span class="hometxtcolor">
an Account
</span>
</div>
答案 1 :(得分:-2)
https://www.w3schools.com/howto/howto_css_image_text.asp
在此处查找完整的解决方案...