I am trying to print web pages that contain external CSS references and use web fonts (I mean @font-face attribute) but in print preview the web fonts disappear. Does anyone know a solution without using the web font locally?
相关问题
- Rails 4 - Custom Fonts
- How to load font from @font-face with Parcel?
- How to print C# 3D jagged array
- SQLite Storage in Firefox 3.0 +
- How to hide the scroll bar and with the content ra
相关文章
- Print background image on every page once
- Firefox remembering radio buttons incorrectly
- Python: print in two columns
- Rounding decimals in nested data structures in Pyt
- How to control print font size
- CSS Firefox box-shadow and outline
- XML Parsing Error in Firefox developer console
- firefox ondrop event.dataTransfer is null after up
Looks like printing @font-face fonts is not yet implemented:
https://bugzilla.mozilla.org/show_bug.cgi?id=468568
inlcude the file not only for screen but also for print
<link rel="stylesheet" type="text/css" href="main.css" media="screen" />
but include the css also for print
<link rel="stylesheet" type="text/css" href="main.css" media="print" />
in your case the href should then go to an external url
Works as of Firefox 18! - Yippee!