欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

div盒子居中

程序员文章站 2022-07-08 19:18:15
...

1.实现div水平居中

html代码:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>用户登入</title>
<style>
        #login_form{
            width:450px;
            height:300px;
            margin: 0 auto;  /*左右距离为auto,实现水平居中*/
background: #000000;
        }
    </style>

</head>
<body  style="background: #0079d2;margin: 0;padding: 0;">

<div id="login_form">

</div>
</body>
</html>

实现效果:

div盒子居中
            
    
    博客分类: div+css div居中水平居中垂直居中 
 

2.实现div盒子居中(水平垂直)

html代码:
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>用户登入</title>
   <style>
        #login_form{
            /*利用绝对定位实现*/
position: absolute;
            width:450px;
            height:300px;
            /*使div左上的点居中*/
left:50%;
            top:50%;
            /*使盒子往左上分别移动宽高的一半,实现居中*/
margin-left:-225px;
            margin-top:-150px;
            background: #000000;

        }
    </style>


</head>
<body  style="background: #0079d2;margin: 0;padding: 0;">

<div id="login_form">

</div>

</body>
</html>

运行效果:


div盒子居中
            
    
    博客分类: div+css div居中水平居中垂直居中 
 
  • div盒子居中
            
    
    博客分类: div+css div居中水平居中垂直居中 
  • 大小: 2.3 KB
  • div盒子居中
            
    
    博客分类: div+css div居中水平居中垂直居中 
  • 大小: 2.1 KB