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

用两种方法来实现一个背景色为红色,宽度为800px,高度为400px的<DIV>在浏览器中居中

时间:2015-11-04 21:21:18      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:

第一种方法

<style>
div{
margin: 0 auto;
background-color: yellow;
width: 50em;
height: 25em;
text-align: center;
}
</style>
</head>
<body>
<div>
div居中
</div>
</body>

第二种方法

<style>
div{
position: absolute;
left: 50%;
margin-left: -25em;
background-color: yellow;
width: 50em;
height: 25em;
text-align: center;
}
</style>
</head>
<body>
<div>
div居中
</div>
</body>

 

用两种方法来实现一个背景色为红色,宽度为800px,高度为400px的<DIV>在浏览器中居中

标签:

原文地址:http://www.cnblogs.com/chenchuen/p/4937086.html

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