CSS- The Cascade !
CSS stands for Cascading Stylesheets. The Cascade is the algorithm for solving conflicts where multiple CSS rules are applied to an HTML element. If we have this <p> tag ...
<p> Let's Check which color is chosen by the browser </p>
p{
color: red;
}
...
garimasharma.hashnode.dev5 min read