DIV图像未垂直和水平居中



无论我尝试什么,我的图像都不会以顶点为中心。如果有人可以为我提供代码更正,将不胜感激。预先感谢。

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>

尝试:

<!DOCTYPE html>
<html>
<head>
<title>HTML Reference</title>
<style>
img {
   display: block;
   margin: 0 auto;
}
body {
    background-color: black;
}
h1 {
    color: white;
    text-align: center;
}
p {
    color : white;
    font-family: verdana;
    font-size: 20px;
}
</style>
</head>
<body>
<h1>Text</h1>
<div class="img">
  <img src="rsz_damon600.png">
</div>
</body>
</html>

您应该将保证金顶和边缘左侧设置为宽度和高度的一半。

,或者如果您不知道元素的大小,则可以使用

转换:转换(-50%,-50%);

将其垂直和水平居中

img {
   position: absolute;
   top: 50%;
   left: 50%;
   /* width: 675px;
   height: 418px; */
   transform: translate(-50%, -50%);
}

另一种方法:

img {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   margin: auto;
}

这是指南

使用CSS Trick transform: translate(-50%, -50%)

img {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 675px;
   height: 418px;
   transform: translate(-50%, -50%);
}
body {
    background-color: black;
}
h1 {
    color: white;
    text-align: center;
}
p {
    color : white;
    font-family: verdana;
    font-size: 20px;
}
<style>
</style>
<body>
<h1>Text</h1>
<div class="img">
  <img src="http://www.motorverso.com/wp-content/uploads/2015/01/iNFINITI-q60-1_1280x792-675x418.jpg">
</div>
</body>

您可以这样简单地这样做。将图像放在DIV元素中。然后将DIV的保证金设置为自动。:)

<div name="my_div"style="margin:auto;">
      <img src="" id="" />
</div>

尝试将left:50%更改为left:43%。那应该把你带到你想去的地方。

相关内容

  • 没有找到相关文章

最新更新