美文网首页
vw vh calc

vw vh calc

作者: jh2k15 | 来源:发表于2018-05-16 21:49 被阅读0次

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    .component{
    width:50vw;
    height:50vh;
    background: red;
    font-size: calc(112.5% + 4 * (100vw - 600px) / 400)
    }
    </style>
    </head>
    <body>
    <div>
    <div class="component">hello</div>
    </div>
    </body>
    </html>

    相关文章

      网友评论

          本文标题:vw vh calc

          本文链接:https://www.haomeiwen.com/subject/fbwmdftx.html