spll

效果图:

 

 

 

实现方式:使用table-cell布局

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <title>Document</title>
 
    <style>
        .parent {
            width: 100%;
            height: 100%;
            display: table;
            text-align: center;
        }
        
        .son {
            display: table-cell;
            vertical-align: middle;
            background-color: rgb(140, 25, 163);
        }
    </style>
</head>
 
<body>
    <div class="parent">
        <div class="son">
            <h1>智慧园区</h1>

            <h3>SMART PARK</h3>

            <p>全方位提升一人为本,独具特色,高效运行的美好、智慧园区</p>
        </div>
    </div>
 
</body>
 
</html>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-26
  • 2021-08-02
  • 2022-12-23
  • 2021-09-22
猜你喜欢
  • 2022-12-23
  • 2021-08-15
  • 2021-11-04
  • 2021-11-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案