Created
June 4, 2017 10:49
-
-
Save simplyniceweb/767237665613c23b6356ea9bb18ea796 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> | |
<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