.element { color: #ff0000; }
You can pass value to color property in RGB format also like below example
.element { color: rgb(0,0,0); } .element { color: rgba(0,0,0,0.7); }
0 Comments