饥人谷技术博客

长度单位、calc() 表达式

2017-07-11  本文已影响103人  _空空

长度单位

绝对长度单位

// 像素px(pixels):在web上,像素px是典型的度量单位,很多其他长度单位直接映射成像素。最终,它们被按照像素处理   
// 像素其实也算相对单位 

// 英寸in(inches)
1in = 2.54cm = 96px 

// 厘米cm(centimeters)
1cm = 10mm = 96px/2.54 = 37.8px

// 毫米mm(millimeters)
1mm = 0.1cm = 3.78px
 
// 1/4毫米q(quarter-millimeters)
1q = 1/4mm = 0.945px

// 点pt(points)
1pt = 1/72in = 0.0139in = 1/72*2.54cm = 1/72*96px = 1.33px

// 派卡pc(picas)
1pc = 12pt = 1/6in = 1/6*96px = 16px

字体相关相对长度单位

    <style type="text/css">
    .box{
        font-size: 20px;
    }
    
    .in{
        /* 相对于父元素,所以2*20px=40px */
        font-size: 2em;
        /* 相对于本身元素,所以5*40px=200px */
        height: 5em;
        /* 10*40px=400px */
        width: 10em;
        background-color: lightblue;
    }
    </style>
</head>
<body>
<div class="box">
    <div class="in">测试文字</div>    
</div>
</body>
    <style type="text/css">
    /* 浏览器默认字体大小为16px,则2*16=32px,所以根元素字体大小为32px */
    html{font-size: 2rem;}

    /* 2*32=64px */
    .box{font-size: 2rem;}

    .in{
        /* 1*32=32px */
        font-size: 1rem;
        /* 1*32=32px */
        border-left: 1rem solid black;
        /* 4*32=128px */
        height: 4rem;
        /* 6*32=192px */
        width: 6rem;
        background-color: lightblue;
    }
    </style>
</head>
<body>
<div class="box">
    <div class="in">测试文字</div>    
</div>

<script type="text/javascript">
var inDiv = document.getElementsByClassName('in')[0];

console.log(getComputedStyle(inDiv, false)['font-size']);   // 32px
console.log(getComputedStyle(inDiv, false)['width']);   // 192px
</script>
</body>
    <style type="text/css">
    .box{font-size: 20px;}
    
    .in{
        font-size: 1ex;
        border-left: 1ex solid black;
        height: 10ex;
        width: 20ex;
        background-color: lightblue;
    } 
    </style>
</head>
<body>
<button>宋体</button><button>微软雅黑</button><button>arial</button><button>serif</button>
<div class="box">
    <div class="in" id="test">测试文字</div>    
</div>

<script type="text/javascript">
var aBtns = document.getElementsByTagName('button');
for(var i = 0; i < aBtns.length; i++ ){
    aBtns[i].onclick = function(){
        test.style.fontFamily = this.innerHTML;
    }
}    
</script>
</body>

视口相关相对长度单位

calc() 数学表达式(calculation)

    <style type="text/css">
    .test1{
        border: calc( 1px + 1px ) solid black;
        /* calc里面的运算遵循 *、/ 优先于 +、- 的顺序 */
        width: calc(100%/3 - 2*1em - 2*1px);
        background-color: pink;
        font-style: toggle(italic, normal); 
    }

    .test2{
        /* 由于运算符 + 的左右两侧没有空白符,所以失效 */
        border: calc(1px+1px) solid black;
        /* 对于不能小于0的属性值,当运算结果小于0时,按0处理 */
        width: calc(10px - 20px);
        padding-left: 10px;
        background-color: lightblue;
    }
    </style>
</head>
<body>
<div class="test1">测试文字一</div>    
<div class="test2">测试文字二</div>
</body>
    <style type="text/css">
    p{margin: 0;}
    .parent{overflow: hidden; zoom: 1;}
    .left{float: left; width: 100px; margin-right: 20px;}    
    .right{float: left; width: calc(100% - 120px);}
    </style>
</head>
<body>
<div class="parent" style="background-color: lightgrey;">
    <div class="left" style="background-color: lightblue;">
        <p>left</p>
    </div>
    <div class="right"  style="background-color: lightgreen;">
        <p>right</p>
        <p>right</p>
    </div>
</div>
</body>
上一篇下一篇

猜你喜欢

热点阅读