Skip to content

Instantly share code, notes, and snippets.

@jkup
Created June 25, 2021 00:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkup/e1d1b0f634badf5e18902eaefb6bf5a4 to your computer and use it in GitHub Desktop.
Save jkup/e1d1b0f634badf5e18902eaefb6bf5a4 to your computer and use it in GitHub Desktop.
CSS Specificity
<!DOCTYPE html>
<html>
<head>
<style>
.foo {
color: blue;
}
#bar {
color: red;
}
</style>
</head>
<body>
<div class="foo" id="bar">Hello</div>
</body>
</html>
@SupWebCoder
Copy link

id

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment