Home  >  Article  >  Web Front-end  >  css中calc()的使用_html/css_WEB-ITnose

css中calc()的使用_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:18:30844browse

calc()是css3中新出现的特性,可以用于动态计算,非常方便。

首先是兼容性

再来看看怎么使用

html{    font-size: 20px;}div{    width: calc(50% - 1px);    height: calc(100px + 1rem);}

要注意的是,计算符号两边需要留空格。

非常的简单易用。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn