<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
            *{
                margin: 0 ;
                padding: 0;
            }
        span{
            border: 1px solid #333;
        }
        div{
                display: flex;
                justify-content:center;/*x轴对齐方式*/
                align-items:center;     /*y轴对滴方式*/
                height: 100vh;        /**屏幕高度百分百*/
        }        
    </style>
</head>
<body>
    <div><span>内容所在区域</span></div>
</body>
</html>

 

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2022-01-18
  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
猜你喜欢
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2021-11-29
相关资源
相似解决方案