Skip to content

Instantly share code, notes, and snippets.

@wurin7i
Last active January 1, 2016 04:39
Show Gist options
  • Save wurin7i/8093283 to your computer and use it in GitHub Desktop.
Save wurin7i/8093283 to your computer and use it in GitHub Desktop.
Contoh css media query
<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