Css Rules Cascade
there are two or more rule that is apply to the same elements in web page, it's important to understand what is use of css
<style>
* {
font-family: Arial, Verdana, sans-serif;
}
h1 {
font-family: "Courier New", monospace;
}
i {
color: green;
}
i {
color: red;
}
b {
color: pink;
}
p b {
color: blue !important;
}
p b {
color: violet;
}
p#intro {
font-size: 100%;
}
p {
font-size: 75%;
}
</style>
<h1>Code family</h1>
<p id="intro">There are <i>dozens</i> Code family
<b>Code family</b> Code family.</p>
<p>They are usually described as early, second early
and Code family.</p>