div固定宽高绝对居中设置方法

发布时间:2019-09-02编辑:脚本学堂
本文介绍了固定宽度与高度的div绝对居中显示的设置方法,有需要的朋友参考学习下。

实现点:
如果元素的宽高固定,那么css指定样式为top:50%;left:50%;
而margin-top和 margin-left 指定为负数,绝对值为自身宽高的一半。

当然,position也需要指定为absolute,或者relative.

如果要在某个父级元素内居中,那么父元素也需要指定css的position属性。

如果有边框,那么,margin元素需要做一点微调。

例子:
 

复制代码 代码示例:
<!doctype html>
<html>
<head>
<title> 固定宽高的元素居中--www.jb200.com </title>
<style>
.content{
width: 400px;
height: 300px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -200px;
margin-top: -150px;
background-color: #8888cc;
}
</style>
</head>
<body>
<div class="content">
<p>指定页面居中的元素</p>
</div>
</body>
</html>