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

DIV水平垂直居中方法

程序员文章站 2022-03-16 07:53:12
...

/DIV子容器水平垂直居中方法1/ {margin:auto; position:relative; left:0;top:0; right:0; bottom:0;}方法2,使用flex弹性布局*/ {display:flex; justify-content:center; align-items:center;}
希望对你有帮助!