printing issue in IE and Firefox - html

I'm trying to print this page under the link graded fabric ArcCom in IE and Firefox. However, the first page that I printed out appears blank and it is not a complete content. Does anybody know how to fix this by editing the HTML or any other code?

I reccomend creating a print stylesheet.
<link rel="stylesheet" type="text/css" href="print.css" media="print">

Related

CSS file works in Safari but not in Google Chrome or Firefox

When I open my index.html file in Safari, it shows everything, styled with my CSS file. When I open my index.html with Google Chrome, it appears to only show the HTML. I do not use webkits, and I only pair my HTML to my CSS using this in my head tag in my index.html file:
CSS:
<link rel=stylesheet type="html/css" href="stylesheet.css">
Does anyone know how I can open this in Google Chrome so it uses my CSS file like Safari does?
Thanks in advance!
First clear cache of browser and disable some html/css validation extension.It will be sure that it will work. and just follow the css attachment syntax below.<link rel="stylesheet" type="text/css" href="stylesheet.css">
Try using
<link rel="stylesheet" type="text/css" href="stylesheet.css">
The rel tag should have some quotation marks and the type should be text/css for compatibility.
I had the same problem with updating CSS, try ctrl + f5.
It also forces to reload the cache.
And if this is the problem, you can try to clear the cache in the browser.

Chrome Print stylesheet not working

I have a stylesheet that is working perfectly in IE, removing headers and footers and displaying my content in a more easy-to-print way. however when printing in chrome, it does not work. If i emulate a print media query in the developer tools it does.
I suspect this is because Chrome converts the document into a pdf before printing. Is there any way around this?
in my html code, my css files are linked as follows:
<link href="/css/form.css" rel="stylesheet" type="text/css" />
<link href="../content/PrintConfirmation.css" rel="stylesheet" media="print"/>
as i said, this works perfectly in IE when printing, but in chrome when going to print, it doesnt.
Duplicate question, See answer: Chrome: Print preview differs from simulate CSS media print
Particularly transition: none !important;

css not loading on some computers

I'm using html and css for the first time. On one computer the html refers to the css appropriately, but on another the css is not referred to at all. I think I'm linking to the css correctly in the html:
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
On both computers, I'm using the latest version of Firefox.
Any thoughts as to where I'm going wrong?
Thanks in advance.
Are you using your browser's developer tools?
Right click in Firefox and go to "Inspect".
Find the Web Console tab. There you will see if the reference to the css file is valid or if it returning a 404, not found.
Also, your reference should be href="/css/mystyle.css", to keep a clean root directory of the site.
Also, you might want to self close the tag:
<link rel="stylesheet" type="text/css" href="/css/mystyle.css" />
And if that doesn't help, run your code through the w3c validator: http://validator.w3.org/

Firefox does not recognize my Stylesheets

I'm just writing a framework for responsive web development. I just started yesterday and began with the css today. Everything works fine in Chrome as well as in IE, but Firefox doesn't recognize the stylsheets at all.
I did validate everything and didn't get any errors.
This is the way I integrated the CSS:
<link rel="stylesheet" type="text/css" href="/WebDesign/Projects/Framework/css/reset.css" />
Oh, and maybe it's important: I only used the <!DOCTYPE html> as declaration.
Thanks for any answer :)
If the style sheet is in the same root, you don't really need the whole link to the root when getting the style:
<link rel="stylesheet" href="./styles.css" type="text/CSS" />

Force browser to render webpage's Print stylesheet

A lot of web pages use a Print stylesheet to format things better for printing. My question is, is it possible to force the browser to render a page using the print stylesheet without actually printing it?
In Chrome (version 78), you can force the browser to render the webpage's print stylesheet using Chrome DevTools by going to More Tools > Rendering
then selecting the Print option in the Emulate CSS Media dropdown
usually the print css has a media type of print. simply remove the media definition and use it in replace of the main style sheet
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
change to
<link rel="stylesheet" type="text/css" media="all" href="print.css" />