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

div居中的优雅写法:flex布局

程序员文章站 2022-05-01 17:16:19
...

以前一直对div居中这个问题感到很麻烦,一般都是通过margin来实现居中的,然而还要算半天,今天get到了一种新方法,哈哈哈哈,特此记录:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .main{
            width: 300px;
            height: 300px;
            background-color: lightblue;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .main>div{
            width: 200px;
            height: 200px;
            background-color: white;
        }
    </style>
</head>
<body>
    <div class="main">
        <div>haha</div>
    </div>
</body>
</html>

div居中的优雅写法:flex布局

其中justify-content设置水平居中,align-items设置垂直居中

相关标签: HTML/CSS学习