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

div居中代码 DIV水平居中显示CSS代码

时间:2017-06-22 21:49:55      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:html   char   ref   宽度   auto   tle   实现   边框   microsoft   

如何使用CSSDIV居中显示,让div水平居中有哪些CSS样式呢?

需要的主要css代码有两个,一个为text-align:center(内容居中),另外一个为margin:0 auto;其两个样式需要配合使用才能实现div盒子的居中显示排版。

首先我们对body设置text-align:center,再对需要居中的div盒子设置css样式margin:0 auto,这样即可让对应div水平居中。

实例讲解div居中代码应用,为了观察div居中效果,我们对div设置一个div命名为“.div”在html中div标签内使用class=“div”,设置其宽度为400px;高度为100px,边框为红色。以便我们观察效果。

 

  1. <!DOCTYPE html
  2. <html
  3. <head
  4. <meta charset="utf-8" /> 
  5. <title></title
  6. <style
  7. body{ text-align:center} 
  8. .div{ margin:0 auto; width:400px; height:100px; border:1px solid #F00} 
  9. /* css注释:为了观察效果设置宽度 边框 高度等样式 */ 
  10. </style
  11. </head
  12. <body
  13. <div class="div"
  14. DIVCSS5实例 
  15. </div
  16. </body
  17. </html

div居中代码 DIV水平居中显示CSS代码

标签:html   char   ref   宽度   auto   tle   实现   边框   microsoft   

原文地址:http://www.cnblogs.com/z1h2/p/7067186.html

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