<html>
<head>
<title>Kaskadowość</title>
<!--
Zakładamy, że plik strona.css posiada wpis:
/* Specifity: 0-0-2 */
section p {
color: red;
}
-->
<link rel="stylesheet" href="strona.css" />
<style>
/* Specifity: 0-0-2 */
section p {
color: pink;
}
/* Specifity: 0-0-2 */
body p {
/* Wszystkie selektory mają tą samą wartość 0-0-2,
ale ten selektor jest ostatni, więc tekst będzie pomarańczowy */
color: orange;
}
</style>
</head>
<body>
<section>
<p>Lorem ipsum text</p>
</section>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.