What is the difference between class selectors and id selectors?

Forums CSSWhat is the difference between class selectors and id selectors?
Staff asked 3 years ago

Answers (1)

Add Answer
Nayan Raval Marked As Accepted
Staff answered 3 years ago

Class selectors are given an overall block, whereas id selectors simply accept a single element that differs from other components.

Class Selector in CSS

<style>    
.center {    
    text-align: center;    
    color: blue;    
}    
</style>

CSS Id Selector

<style>    
#para1 {    
    text-align: center;    
    color: blue;    
}    
</style>

 

 

Subscribe

Select Categories