Chrome Not Printing Correctly On First Print When Using Open Sans Font Chrome Not Printing Correctly On First Print When Using Open Sans Font google-chrome google-chrome

Chrome Not Printing Correctly On First Print When Using Open Sans Font


Ended up just changing the styles used. Instead of using display: none I'm now using the following:

.my-hide {  display: block !important;  height: 0px;  overflow: hidden;}@media print {  .my-hide {    height: auto;  }}

For some reason these CSS rules get processed in time while the others don't.