【发布时间】:2017-08-04 06:26:35
【问题描述】:
无论我尝试什么,我的图像都没有以顶部的标题为中心。 如果有人可以为我提供代码更正,将不胜感激。提前致谢。
img {
position: absolute;
top: 50%;
left: 50%;
width: 675px;
height: 418px;
margin-top: -250px;
/* Half the height */
margin-left: -250px;
/* Half the width */
}
body {
background-color: black;
}
h1 {
color: white;
text-align: center;
}
p {
color: white;
font-family: verdana;
font-size: 20px;
}
<h1>Text</h1>
<div class="img">
<img src="rsz_damon600.png">
</div>
【问题讨论】:
-
没关系,我发现了问题。我应该将边距顶部和左侧更改为宽度和高度的一半。不过谢谢。