Posts

Showing posts with the label Using Colors in Css

Using Colors in CSS

Using Colors in CSS Colors are specified using predefined color names, or RGB, HEX, HSL, RGBA, HSLA values. CSS Color Names In CSS, a color can be specified by using a color name: Red, Blue, Green, Orange, Tomato, DodgerBlue, MediumSeaGreen, Gray, SlateBlue, Violet , LightGray etc. CSS Background Color You can set the background color for HTML elements: Example < h1  style ="background-color:DodgerBlue;" > Hello World < /h1 > < p  style ="background-color:Tomato;" > Lorem ipsum... < /p > CSS Text Color You can set the color of text: Example < h1  style ="color:Tomato;" > Hello World < /h1 > < p  style ="color:DodgerBlue;" > Lorem ipsum... < /p > < p  style ="color:MediumSeaGreen;" > Ut wisi enim... < /p > CSS Border Color You can set the color of borders: Example < h1  style ="border:2px solid red;" > Hello World < /h...