html怎么让div垂直和水平居中显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html怎么让div垂直和水平居中显示相关的知识,希望对你有一定的参考价值。

首先我们对body设置text-align:center,再对需要居中的div盒子设置css样式margin:0 auto,这样即可让对应div水平居中。
实例讲解div居中代码应用,为了观察div居中效果,我们对div设置一个div命名为“.div”在html中div标签内使用class=“div”,设置其宽度为400px;高度为100px,边框为红色。以便我们观察效果。
参考技术A

加入清零样式。

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,pre,a,code,del,em,img,strong,sub,sup,b,u,i,dl,dt,dd,ol,ul,li,fieldset,form,label,table,tbody,tfoot,thead,tr,th,tdborder:none;font-size:100%;margin:0;outline:0;padding:0;vertical-align:baseline
bodyfont-family:"microsoft yahei","微软雅黑\\8F6F\\96C5\\9ED1,Arial,Helvetica,sans-serif";font-size:12px;margin:0 auto;

本回答被提问者采纳
参考技术B div
    position:fixed;
    width:100px;
    height:100px;
    margin:auto;
    background:red;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index:10;

以上是关于html怎么让div垂直和水平居中显示的主要内容,如果未能解决你的问题,请参考以下文章

怎么让一个不定宽高的div水平居中,垂直水平居中

如何让DIV水平和垂直居中

让DIV水平和垂直居中的几种方法

让DIV水平和垂直居中的几种方法

怎么使用CSS让图片水平垂直都居中?

怎样让div的内容水平垂直居中