Class and Id Selector in CSS

Give name (Id and Class) to elements and then use those names to select them in CSS.

 

Id Selector

  • Give Id to our Paragraph
  • Add css to Id Selector - Hash Seletor
  • We are not allowed to repeat id, so to avoid any issue, try to use class selector instead. 

 

 

 

 

Class Selector 

  • Give class to our Paragraph
  • Add css to Id Selector - Dot/Class Seletor
  • We can use same class name with multiple elmenets 

 

 

 

 


Related Question