Skip to content

Instantly share code, notes, and snippets.

@JosueMagnus12
Created July 31, 2021 01:45
Show Gist options
  • Save JosueMagnus12/20d2721db50d0e2a68c120c3abd17269 to your computer and use it in GitHub Desktop.
Save JosueMagnus12/20d2721db50d0e2a68c120c3abd17269 to your computer and use it in GitHub Desktop.
Specificity
<!DOCTYPE html>
<html lang="en-us">
<head>
<style>
p{
color: red;
}
.paragraph{
color: yellow;
}
#p1{
color: purple;
}
</style>
</head>
<body>
<p class="paragraph" id="p1">A cool heading</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment