媒体查询&文本和字体
Posted ltfxy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了媒体查询&文本和字体相关的知识,希望对你有一定的参考价值。
媒体查询,语法如下,示例:当屏幕大于600小于900时样式生效:
@media screen and (min-width:600px) and (max-width:900px) { body { background-color: red; } }
文本和字体:
@font-face{ font-family: "haha"; src: url("./"); } div{ font-family: haha; }
以上是关于媒体查询&文本和字体的主要内容,如果未能解决你的问题,请参考以下文章