+ 1

Whats the problem with my site?

I made this site for a school project: manuel03.bplaced.net/karten.html I want to print it, but when I launch the print console, it doesnt show the boxes. Is there a major html problem or something like this?

19th Apr 2018, 2:46 PM
manu xx
manu xx - avatar
1 Réponse
+ 1
You could try making external CSS files and direct the media type toward printers and screens individually. The HTML <head> <link rel=“stylesheet” href=“screen-styles.css” media=“screen”> <link rel=“stylesheet” href=“printer-styles.css” media=“print”> </head> And the CSS //screen-styles.css @media screen{ //code here } //printer-styles.css @media print { //code here }
20th Apr 2018, 8:50 AM
Derek Stockton
Derek Stockton - avatar