css中绿色的代码是什么,

html-css026

css中绿色的代码是什么,,第1张

css中绿色的代码是#00FF004 。

<style>

.hotline24{ width:130pxheight:25pxborder-radius: 5pxbackground:greenline-height:25pxtext-align:centercolor:#00FF004}

</style>

最后一个color:#00FF004就是绿色。

找到元素,给元素添加color就可以了,

比如

<div class="box">想要设置颜色的字体</div>

.box{color:green} //通过class抓取div 然后设置颜色为绿色,

希望采纳,谢谢。