I am in need of a stylesheet that works well for both print and screens with decent width.
When I write the following code, I expect it to be clear:
@media print or (screen and (min-width: 801px)) {
Rules here
}
Unfortunately, this code does not achieve what I need it to.
Can someone please help me with the correct syntax?