我有一个容器,我有#info持有我的h5文本。如何在容器中将文本放置在我想要的任何位置,而不会在分辨率不同时弄乱页面。感谢。
<style media="screen" type="text/css">
body {
background-color:#C0C0C0;
}
#container {
background-image:url('pic.png');
background-repeat: no-repeat;
height: 541px;
width:1020px;
margin: auto;
}
#info {
height:500px;
width:700px;
}
a:link {
text-decoration: none;
color:#000000;
}
a:hover {
background-color:#efefef;
}
h5 {
color:black;
font-size:0.9em;
}
</style>
答案 0 :(得分:5)
将position: relative
添加到#container
和h5
。然后,您可以使用left
和top
(或right
和bottom
)移动标题。
#container {
position: relative;
}
h5 {
position: relative;
left: 10px;
top: 5px;
}