CSS设置DIV居中

CSS设置DIV居中


<style type="text/css">
body{
     text-align:center;
}

.divs{
    margin:0 auto;
}
</style>

<body>
     <div class="divs">CSS设置DIV居中</div>
</body>


原文地址:https://www.cnblogs.com/hzcya1995/p/13314374.html