字体颜色设置:
1.使用color属性来设置字体的颜色,格式为:color:合法的颜色值
2.颜色值可以是英文颜色名,16进制,RGB和RGBA
3.当文字没有设置颜色时,默认为黑色
4.英文颜色名可能不被一些浏览器接受,使用16进制颜色值,或RGB颜色值能被所有浏览器识别并正常显示
<div>我要自学网</div>
<div style="color: red ;">我要自学网1</div>
<div style="color: #0000FF;">我要自学网2</div>
<div style="color: rgb(122,89,223);">我要自学网3</div>
<div style="color: rgba(122,89,223,0.8);">我要自学网4</div>