Last active
January 1, 2016 04:39
-
-
Save wurin7i/8093283 to your computer and use it in GitHub Desktop.
Contoh css media query
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
<html> | |
<head> | |
<style> | |
.panel { | |
border: 1px solid #000; | |
padding: 10px; | |
margin: 10px; | |
} | |
@media print { | |
.screen { | |
display: none; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="panel screen"> | |
<strong>Perhatikan!</strong> Bagian ini ilang klo diprint. | |
</div> | |
<div class="panel print"> | |
<h1>Halooo</h1> | |
<p>follow me @wurinugrahadi</p> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment