div居中

来源:互联网 发布:scratch for windows 编辑:程序博客网 时间:2024/04/29 18:47

1.div居中 如登录框(下例为:宽450高350的div居页面中央显示)

#page        {            position: absolute;            top: 50%;            left: 50%;            margin: -150px 0 0 -200px;            width: 450px;            height: 350px;            border: 1px solid black;        }


0 0