Skip to content

Instantly share code, notes, and snippets.

@ZeusAFK
Created May 29, 2018 13:38
Show Gist options
  • Save ZeusAFK/da7279c49acb36277d1520af3bd9e06b to your computer and use it in GitHub Desktop.
Save ZeusAFK/da7279c49acb36277d1520af3bd9e06b to your computer and use it in GitHub Desktop.
<!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