icon font 和媒体查询的运用

编辑: admin 分类: 电脑知识 发布时间: 2023-06-14 来源:互联网
  1. <link rel="stylesheet" href="//at.alicdn.com/t/c/font_3927980_xjos8pca4.css">
  2. <style>
  3. .iconfont {
  4. font-family: "iconfont" !important;
  5. font-size: 50px;
  6. font-style: normal;
  7. -webkit-font-smoothing: antialiased;
  8. -webkit-text-stroke-width: 0.2px;
  9. -moz-osx-font-smoothing: grayscale;
  10. }
  11. @media screen and (min-width:1200px) {
  12. /* 根据屏幕不同宽度 显示不同内容 就叫响应式 */
  13. /* 当屏幕宽度大于1200px */
  14. body {
  15. background-color: red;
  16. }
  17. }
  18. @media screen and (max-width:1199px) and (min-width:800px) {
  19. body {
  20. background-color: blue;
  21. }
  22. }
  23. @media screen and (max-width:799px) {
  24. body {
  25. background-color: brown;
  26. }
  27. }
  28. </style>

</head>

<body>
<div>
<p class="iconfont icon-yaoqinghaoyou"></p>
<span class="iconfont icon-fangwuchuzu"></span>
<span class="iconfont icon-shangpuchuzu"></span>
</div>
</body>

【文章原创作者大丰网页制作公司 http://www.1234xp.com/dafeng.html 欢迎留下您的宝贵建议】