码迷,mamicode.com
首页 > 其他好文 > 详细

实现让一个DIV在电脑屏幕的正中间显示!

时间:2018-01-29 11:47:52      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   charset   abs   oct   back   text   har   pos   head   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
body{
background: black;
}
.main{
width: 1000px;
height: 500px;
position: absolute;
background: #ccc;
left: 50%;
top:50%;
margin-left: -500px;
margin-top: -250px;
}
</style>
</head>
<body>
<div class="main">

</div>

</body>
</html>

实现让一个DIV在电脑屏幕的正中间显示!

标签:style   charset   abs   oct   back   text   har   pos   head   

原文地址:http://blog.51cto.com/11871779/2066283

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!