网页居中

来源:互联网 发布:php 今日凌晨时间戳 编辑:程序博客网 时间:2024/05/21 17:36

使用 left(or right)使网页居中,兼容性比使用margin: auto , text-align: center高, 参考下面代码:

<html>

<style>

.container{

position: absolute;

width: 80%;

left: 10%;

background: red;

}

</style>

<body>

<div class="container">

container

</div>

</body>

</html>

0 0
原创粉丝点击