1<!--{
2
3"title": "math()"
4
5}-->
6
7Evaluate a raw mathematical expression.
8
9<code>math( *expression* [, *unit*] )</code>
10
11## Examples
12
13```css
14font-size: math( 12 / 16, em );
15```
16
17```css
18font-size: 0.75em;
19```
20