Skip to content

Instantly share code, notes, and snippets.

@jlcrow
Last active October 27, 2015 13:13
Show Gist options
  • Save jlcrow/9468b76de4b948c489ff to your computer and use it in GitHub Desktop.
Save jlcrow/9468b76de4b948c489ff to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html class="nojs">
<head>
<title>My Title</title>
<script>document.documentElement.className = "js";</script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<p>
<a class="myclass">My Link</a>
</p>
<p>
<a class="myclass2">My Blue Link</a>
</p>
</body>
</html>
.nojs a.myclass {color:red}
.js a.myclass {color:black}
a.myclass2 {color:blue}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment