• Html5 语义化标签


    <!DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <style>
        html {
            font-size: 30px;
            color: #ffffff;
            line-height: 1.5;
            font-family: Arial, Helvetica;
            background: #F2F2F2;
        }
        
        body {
            margin: 0 auto;
            padding: 0;
            max- 1200px;
            min- 360px;
             1200px;
        }
        
        header,
        nav,
        footer {
            height: 80px;
             auto;
            margin-bottom: 20px;
            text-align: center;
            line-height: 80px;
            background-color: yellowgreen;
        }
        
        section {
            display: flex;
            justify-content: space-between;
             100%;
        }
        
        section>article {
             500px;
            height: 500px;
            text-align: center;
            line-height: 500px;
            background-color: yellowgreen;
        }
        
        footer {
            margin-top: 20px;
        }
    </style>
    
    <body>
        <header>herder</header>
        <nav>nav</nav>
        <section>
            <article>article</article>
            <article>article</article>
        </section>
        <footer>footer</footer>
    </body>
    
    </html>
    
  • 相关阅读:
    MillerRabin
    BM算法总结
    高斯消元处理自由变元的方法
    [IOI2019]矩形区域
    费用流处理负圈的方法
    回文自动机(PAM)总结
    [TJOI2017]龙舟
    luogu P2252 [SHOI2002]取石子游戏|【模板】威佐夫博弈
    博弈论
    构造
  • 原文地址:https://www.cnblogs.com/bingziweb/p/13924612.html
Copyright © 2020-2023  润新知