- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set the background color of an element with CSS
To set the background color of an element, use the background-color property.
Example
You can try to run the following code to learn how to work with the background-color property:
<html> <head> <body> <p style = "background-color:blue;"> This text has a blue background color.</p> </body> </head> <html>
Advertisements