data types

<angle>

一个完整的圆

360deg = 400grad = 2πrad = 1turn

<color>

color: red;

有这几种

<length>

width: 100px;
height: 0; /* 0 可以省略单位 */

单位有很多,分为两大类。

0 可以省略单位,注意只有 <length> 可以,其它类型不可以省略单位。

<string>

.clearfix::before {
  content: '';
}

单引号和双引号没有区别。

<time>

transition: all .3s;

单位 s, ms。

<url>

background: url('bar.png');

url,单引号,双引号,无引号均可。

相对地址相对于样式表的地址,而不是页面的地址。