+ 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?
1 Answer
+ 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
}