码迷,mamicode.com
首页 > Web开发 > 详细

div+css页面居中代码

时间:2015-05-02 16:26:41      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

  • 普通div和html混写可以这样写,设置

 

  1. text-align:center,

     

  2. margin:0px auto

     

     

 

最简单的方法就是 把你的body这样设置:


<body style="text-align:center;">
<div style="margin:0px auto"></div>

</body>

 

或者直接设置css文件。在文件里面这样写

<style>
#content{ width:778px; margin:0 auto; text-align:center;}
</style>
<div id="content">看看是不是居中了</div>

div+css页面居中代码

标签:

原文地址:http://www.cnblogs.com/zhujiabin/p/4471980.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!