Hi, hope everyone is doing well.
I have been wondering if ID overrides the class attribute so why there is a need for class why don’t we just use ID.
Thank you,
Hi, hope everyone is doing well.
I have been wondering if ID overrides the class attribute so why there is a need for class why don’t we just use ID.
Thank you,
Welcome to the freecodecamp forum, abdulsamikhan20022!
Classes are used for styling multiple elements at once. So you could style both <p>
and <form>
elements (for example) at the same time with a class name.
On the other hand IDs are used for styling a specific element.
hello @abdulsamikhan20022.a
One of the reasons to use classes as well as Id is
The same ID can be used only for a single element
whereas
you can use the same class for multiple-elements,
this is because of a reason and the reason is explained well in this post
Id can only be used for single/one element whereas a class can be used for multiple elements.
See this:
I remember struggling to understand this when I first started as well.
They don’t override each other and are totally separate.
IDs are unique and classes can be used as often as you like.
Quick example. You would generally only have one main logo on your site so that would have an id of ‘logo’.
You have a nav bar made up of anchor links. You want all these styled the same but different from the links on the rest of the page. You would use classes here and give your nav links a class of something like ‘nav-link’. You can then use .nav-link as a CSS selector.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.