Last active
October 27, 2015 13:13
-
-
Save jlcrow/9468b76de4b948c489ff to your computer and use it in GitHub Desktop.
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 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> |
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
.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