What is CSS?


CSS full form is Cascading Style Sheets. CSS makes your website beautiful. With the help of CSS, you can manage tags of HTML. For example, place one tag over the other tag or place them parallel to each other. Make a stunning site with animation.


Change the background color of div with CSS.

We are going to change the background color of the div to red color.


HTML Code

1
2
3
<div>
  <p>Hello word</p>
</div>

CSS Code

1
2
3
div {
    background-color: red;
  }

Explanation:

We have changed the background color of the div with CSS.


Share