Question d’entretien chez Aptoide

What is CSS Specificity?

Réponses aux questions d'entretien

Utilisateur anonyme

10 oct. 2017

It's a rule in CSS to provide priority of interpretation to blocks of style. For example, if you have a DIV element with an ID "example" and a class name "example", and in the stylesheet you have: #example{ background-color: red; } .example{ background-color: green; } The DIV's background color would be red, violating the natural reading flow of the stylesheet (top down), because IDs have higher specificity than classes, which could not override the previous style selected by an ID.

Utilisateur anonyme

1 juil. 2020

It is used to give the styles to the web page