Posts

Showing posts with the label background color in css

CSS source code for how to set the background color ?

 CSS source code for how to set the background color ? <html>    <head>    </head>    <body>       <p style = "background-color:red;">          This text has a red background color.       </p>    </body> </html>

css code for background color

 css code for background color h1 {   background-color: green; } div {   background-color: lightblue; } p {   background-color: yellow; }