当前位置:   article > 正文

css的calc和vh&vw_css calc vh

css calc vh

当属性使用calc时,里面可以使用100%或vh(当前可视区域100%高度),该属性值会动态计算并修改
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        
        html,body {
            height: 100%;
        }

        body {
            margin: 0;
            display: flex;
        }

        .box1 {
            height: calc(100% - 200px);
            background-color: #bfa;
            width:20%;
        }

        .box2 {
            height: calc(100vh - 200px);
            background-color: pink;
            width:20%;
        }

        .box3 {
            height: calc(100vh - 200px);
            background-color: coral;
            width:20%;
        }

        .box4 {
            width: 100px;
            height: 100px;
            background-color: grey;
        }
        
    </style>
</head>
<body>
    <div class="box1"></div>
    <div class="box2"></div>
    <div class="box3"></div>
    <div class="box4"></div>
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号