Created
May 29, 2018 13:38
-
-
Save ZeusAFK/da7279c49acb36277d1520af3bd9e06b 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
@media screen and (min-width: 769px){ | |
.on-mobile { | |
display: none !important; | |
} | |
} | |
@media only screen and (max-width: 800px){ | |
.on-desktop{ | |
display: none !important; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="on-mobile">CONTA</div> | |
<div class="on-desktop">CONTABILIDAD</div> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment