I have the following CSS for my print style:
* {
display:none;
}
#printableArea {
display:block;
}
I expected this to hide ALL elements, and only show the printableArea, however EVERYTHING gets hidden. So, in print view, all I get is a blank page.
I have it included properly in the HEAD, with media="print" on this particular stylesheet.
I'm sure I'm just overlooking something simple, but can someone please help? :(