CSS3 盒子模型子元素居中效果

实现效果:

 

效果代码:

<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<title>Document</title>

</head>

 

<style>

 

//在这里只设了webkit内核的实现效果,如果想让其它浏览器支持居中效果那么请用它们的前缀

div{width:200px;height:200px;border:1px solid orange;display:-webkit-box;-webkit-box-align:center;-webkit-box-pack:center;}

 

</style>

 

<body>

 

<div>

<p>我要居中</p>

</div>

 

</body>

</html>

posted @ 2014-08-04 09:31  Zion0707  阅读(1034)  评论(0编辑  收藏  举报