html中color 的四种表示方法

html中color有四种表示方法:

1. 直接用颜色的英文:color: red;

2. 用16进制:color: #FF0000;

3. 简写的16进制: color :#F00;

4. rgb表示法: color: rgb(255,0,0);