Created
July 31, 2021 01:45
-
-
Save JosueMagnus12/20d2721db50d0e2a68c120c3abd17269 to your computer and use it in GitHub Desktop.
Specificity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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