css宽屏显示
How to @import a css file, such as for an open fonts hosted by Google, only for wide screens, such as with px of larger than 846?
如何@css文件导入(例如由Google托管的开放字体),仅用于宽屏幕(例如px大于846)?
A piece of css that you can use:
您可以使用的一段CSS:
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700,900) (min-width:846px)
This import Open Sans fonts for only screens of at least 846 px.
此导入的Open Sans字体仅适用于至少846像素的屏幕。
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。
翻译自: https://www.systutorials.com/how-to-import-a-css-file-only-for-wide-screens/
css宽屏显示