Appearance
css颜色采用十六进制写法
/** bad */ .content { color: rgb(0,0,0); } /** good */ .content { color: #000; }