Last active
November 29, 2019 00:40
-
-
Save saltun/27698424d2de901d32e933be52570d56 to your computer and use it in GitHub Desktop.
HTML No Print Element
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>Test Page - Savaş Can ALTUN / savascanaltun.com.tr</title> | |
<style type="text/css"> | |
@media print{ | |
.no-print, .no-print * | |
{ | |
display: none !important; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Savaş Can ALTUN</h1> | |
<a onclick="javascript:window.print();" class="no-print">Print</a> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment