Online: 26523
By using background-color property we can set the background color for different elements.
<style> p { background-color:orange; } b { background-color:none; } div { background-color:green; } </style> <body> <p>This is TechFunda.com in 'P' element.</p> <b>This is TechFunda.com in 'B' element.</b> <br /> <br /> <div>This is TechFunda.com in 'DIV' element.</div> <br /> <h3>This is an INDIAN TechFunda.com</h3> </body>
In the above code snippet we have given background-color property with different colors to the <p> element, <b> element, <div> element and <h3> element.
OUTPUT