<!DOCTYPE html>
<html>
<head>
<style>
/* This rule will be overridden */
p { color: blue; }
/* This rule will take precedence due to higher specificity */
.important-text { color: green; }
/* This rule will take precedence over all other rules due to the !important declaration */
p { color: red !important; }
</style>
</head>
<body>
<p class="important-text">This paragraph will be red.</p>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.