繁体   English   中英

从顶部或中心垂直移动图像

[英]Move image from top or center vertically

我有一个简单的Under Construction页面,并且想要将我的Under Construction图片与屏幕中间对齐。 水平方向没有问题,但垂直方向我什至无法定位图像。

这是我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Page Under Construction</title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<style type="text/css">
body {
background-color:#d7df29;
width: 100%;
height:  100%;

}
.img {

text-align: center;
margin: 0 auto
vertical-align: middle;
top:500;    

    }

#html5 {
position:absolute;
top:0;
right:0;
}

</style>
</head>
<body>
<div class="img"><img src="1.jpg" alt="Under Construction"></div>
<div id="html5"><img src="images/img_html5_FR.png" height="120" width="120" alt="" />    </div>
<img src="images/fb2.png" style="position: fixed; top: 350px; left: 0px;"     title="Bierzyk na Facebook'u" alt="Bierzyk na Facebook'u">

</body>
</html>

如果您将.img的高度设置为100%,则可以将图像设置为该div(或body )的background-image ,然后以这种方式垂直对齐。 这应该可以正常工作,因为页面上的其他元素是绝对固定的

加上这个

.img {
    position:absolute;
    top:50%;  
    left:50% ;
     background:red;
    margin:-64px 0 0 -64px;
    }

演示

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM