我正在尝试将文本更好地放置在图像上,以便在居中的 div 中更好地显示。分辨率低于 1k 像素。对于桌面分辨率,它确实需要更好地显示。这是我的网页模板,正文中的内容居中。
如果您查看低于 1k 像素的页面,它无法正确显示,我希望它出现在距左侧约 10 像素的标题上方。
我的 HTML 代码显示在哪里。
<div id="header">
<div class="textoverimage">
<p>New two day trip - Zoo & New Years Eve<br /> Sydney Harbour 2012. Book now to avoid disappointment. </p>
</div>
</div>
上述元素的我的 CSS。
#header {
height: 205px;
width: 960px;
margin: 0px;
padding: 0px;
border-top: medium none #009933;
border-right: medium none #009933;
border-bottom: medium none #009933;
border-left: medium none #009933;
background: url(../_images/header.jpg) no-repeat;
}
.textoverimage {
z-index: 100;
position: absolute;
left: 350px;
top: 100px;
right: 30px;
bottom: 0px;
height: 50px;
width: 300px;
border: medium none #03F;
color: #FFF;
}
TYVY 贾里德