css中几种常见的居中方式

直接上代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>居中</title>
<style>
{
margin: 0;
padding: 0;
}
/
水平居中 margin : 0 auto; */
.box{
width: 300px;
height: 300px;
border: 2px solid red;
}
.img1{
display: block;
width: 100px;
height: 100px;
margin: 0 auto;
}

1.0.jpg
  /*水平垂直居中*/
  .box2{
    width: 300px;
    height: 300px;
    position: relative;
    border: 1px solid blue;
    background: yellow;
  }
  .img2{
      width: 100px;
      height: 100px;
      position: absolute;
      top:50%;
      left:50%;
      margin-left: -50px;
      margin-top: -50px;
   }
2.0.jpg
       /*水平垂直居中  2   */
   .box3{
     width: 300px;
     height: 300px;
     position: relative;
     border: 1px solid blue;
   }
   .img3{
       width: 100px;
       height: 100px;
       position: absolute;
       top: 0;
       left: 0;
       bottom: 0;
       right: 0;
       margin: auto;
    }
3.0.jpg
       /*水平垂直居中  3   css3新属性 */
    .box4{
      width: 300px;
      height: 300px;
      position: relative;
      border: 1px solid blue;
    }
    .img4{
        width: 100px;
        height: 100px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
     }
4.0.jpg
     /* table-cell  将其变为表格 */
     .box5{
       width: 300px;
       height: 300px;
       display: table-cell;
       vertical-align: middle;
       text-align: center;
       border: 1px solid blue;
     }
     .img5{
         width: 100px;
         height: 100px;
      }
5.0.jpg
      /* flex布局完成 */
      .box6{
        width: 300px;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid blue;
      }
      .img6{
          width: 100px;
          height: 100px;
       }
6.0.jpg

</style>
</head>
<body>
<div class="box">



</div>
<div class="box2">



</div>
<div class="box3">

</div>
<div class="box4">

</div>
<div class="box5">



</div>
<div class="box6">

</div>
</body>
</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • 1、垂直对齐 如果你用CSS,则你会有困惑:我该怎么垂直对齐容器中的元素?现在,利用CSS3的Transform,...
    kiddings阅读 3,299评论 0 11
  • 各种纯css图标 CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出。直接用CSS3画出这些图形,要比...
    剑残阅读 9,988评论 0 8
  • 不会用代码框,所以看着有些乱套,,,,html部分 <!DOCTYPE html> 迅雷看看 ...
    这就是个帅气的名字阅读 1,919评论 0 0
  • 水平居中方式 1.margig:0 auto;(不能受到float影响) 2.text-align: center...
    MGd阅读 596评论 0 1
  • 她曾经深为他的笑容着迷。那是由成功成熟男子脸上的纹沟组成的笑,转瞬即逝,点到为止,仿佛他自己都觉得那笑容是太好了,...
    爱上灰胖胖的喵阅读 446评论 0 1

友情链接更多精彩内容