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

2021-07-17 08:05

阅读:583

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

如何使用CSS让DIV居中显示,让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. html
  2. html
  • head
  • meta charset="utf-8" /> 
  • title>title
  • style
  • body{ text-align:center} 
  • .div{ margin:0 auto; width:400px; height:100px; border:1px solid #F00} 
  • /* css注释:为了观察效果设置宽度 边框 高度等样式 */ 
  • style
  • head
  • body
  • div class="div"
  • DIVCSS5实例 
  • div
  • body
  • html
  • div居中代码 DIV水平居中显示CSS代码

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

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


    评论


    亲,登录后才可以留言!