Here is my issue:
@media print {
DIV {
display: block;
}
}
<html>
<body>
<div style="display:none">You can't see me!</div>
</body>
</html>
Despite trying the above code, I am unable to view "You can't see me!" when I print. How can I make this visible for printing?