..._div flex 居中">
当前位置:   article > 正文

flex布局怎样让div居中_div flex 居中

div flex 居中

flex布局可以让div或者其他元素居中
请看代码

可以设置div的display属性为flex,然后设置align-items:center; justify-content:center;即可居中

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. <style>
  9. #parent{
  10. width: 500px;
  11. height: 500px;
  12. background: deeppink;
  13. display: flex;
  14. align-items: center; /*垂直方向居中*/
  15. justify-content: center; /*水平方向居中*/
  16. }
  17. #child{
  18. width: 200px;
  19. height: 200px;
  20. background: skyblue;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="parent">
  26. <span id="child">child</span>
  27. </div>
  28. </body>
  29. </html>

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/325605
推荐阅读
  

闽ICP备14008679号