css中綠色的代碼是#00FF004。
<style>
.hotline24{width:130px;height:25px;border-radius:5px;background:green;line-height:25px;text-align:center;color:#00FF004;}
</style>
最后一個color:#00FF004就是綠色。
RGB(Red,Green,Blue)
用法RGB()函數(shù)使用下述公式計算表示顏色的長整數(shù):65536*Blue+256*Green+Red其中,Blue代表藍(lán)色分量,Green代表綠色分量,Red代表紅色分量。各分量中,數(shù)值越小,亮度越低,數(shù)值越大,亮度越高。例如,RGB(0,0,0)為黑色(亮度最低),RGB(255,255,255)為白色(亮度最高)