Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Created June 4, 2017 10:49
Show Gist options
  • Save simplyniceweb/767237665613c23b6356ea9bb18ea796 to your computer and use it in GitHub Desktop.
Save simplyniceweb/767237665613c23b6356ea9bb18ea796 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
.red {
background-color: red;
height: 150px;
width: 150px;
}
.red.active {
color: yellow;
}
.red.inactive {
color: white;
}
</style>
</head>
<body>
<div class="red active">ACTIVE TEXT</div>
<br>
<div class="red inactive">INACTIVE TEXT</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment