茫茫人海中我还是只看到了你。
什么是calc()?
calc() 函数用于动态计算长度值。
- 需要注意的是,运算符前后都需要保留一个空格,例如:width: calc(100% - 10px);
- 任何长度值都可以使用calc()函数进行计算;
- calc()函数支持 “+”, “-”, “*”, “/” 运算;
- calc()函数使用标准的数学运算优先级规则;
语法
calc(expression)
举例
加法+
<template> <div class="demo"> <div class="item"></div> </div> </template> <style lang="scss"> .demo{ width: 400px; height: 400px; background: #999; .item{ width: calc(100% + 200px); height: 100px; background: red; } } </style>
减法-
<template> <div class="demo"> <div class="item"></div> </div> </template> <style lang="scss"> .demo{ width: 400px; height: 400px; background: #999; .item{ width: calc(100% - 200px); height: calc(100% - 100px); background: red; } } </style>
乘法 *
<template> <div class="demo"> <div class="item"></div> </div> </template> <style lang="scss"> .demo{ width: 400px; height: 400px; background: #999; .item{ width: calc(100px * 2); height: calc(100px * 2); background: red; } } </style>
除法 /
<template> <div class="demo"> <div class="item"></div> </div> </template> <style lang="scss"> .demo{ width: 400px; height: 400px; background: #999; .item{ width: calc(100% / 2); height: calc(100% / 2); background: red; } } </style>
calc及大的增加了了宽高计算的便利性。