我正在尝试使用下面的 CSS 和 HTML 在图像上写文本,但它不起作用..
CSS
.social_media_head{
background: url(newsletter_image.gif) no-repeat center;
position: relative;
right: -9px;
height: 0;
width: 325px;
padding: 30px 0 0 5px;
}
.media_name h2{
position: relative;
top: 2px;
}
.media_name {
position: relative;
top: 2px;
}
HTML
<div class="social_media_head">
<h2 class="media_name">Social Media</h2>
</div>
示例jsfiddle
更新 如果我指的是错误的图像,我很抱歉。我想在上面放文字的图像是社交媒体图标(facebook、twitter、youtube)顶部的图像……即类中的图像=“social_media_head”。
再次为混乱感到抱歉。