Are you a beginner in CSS? Some useful tips for you
1. Diffrence between Class and ID’s
Both are use for describe content and layout in a web page. Symbol for class selectors is (.) while id selectors is (#).
Class: We can use the same class on multiple elements and also multiple class on same element.
ID’s: Id’s are unique. It can only be [...]
