首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

块级元素水准,垂直居中的两种方式

2013-08-01 
块级元素水平,垂直居中的两种方式方式一: 利用margin!DOCTYPE htmlhtmlheadtitle块级元素水平,垂

块级元素水平,垂直居中的两种方式

方式一: 利用margin

<!DOCTYPE html><html>    <head>        <title>块级元素水平,垂直居中</title>        <meta charset="utf-8">        <style>            .wrapper {                height: 600px;                border: 1px solid gray;                position: relative;            }            .box {                width: 100px;                height: 100px;                background: gold;                position: absolute;                left: 50%;                top: 50%;                margin-left: -50px;                margin-top: -50px;            }        </style>    </head>    <body>        <div class="wrapper">            <div class="box"></div>        </div>    </body></html>

?

热点排行