Blogger Information
Blog 7
fans 0
comment 0
visits 2493
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
媒体查询和字体图标使用
吴泽方
Original
495 people have browsed it

一、媒体查询,屏幕适应

语法
@media screen and (max-width: 600px) { },其中 screen and可以省略不写,像这样@media (max-width: 600px) { }

注意
所以我们用min-width时,小的放上面大的在下面,同理如果是用max-width那么就是大的在上面,小的在下面

1.实例

  1. <div class="divs" align="center">
  2. <button class="titlebut1">首页</button>
  3. <button class="titlebut2">产品中心</button>
  4. <button class="titlebut3">关于我们</button>
  5. </div>
  6. CSS设置
  7. /* 当屏幕小于300时 */
  8. @media (max-width: 300px) {
  9. html {
  10. font-size: 10px;
  11. }
  12. }
  13. /* 当屏幕大于600时 */
  14. @media (min-width: 600px) {
  15. html {
  16. font-size: 30px;
  17. }
  18. }
  19. /* 多条件使用 media */
  20. @media (min-width: 800px) and (max-width:300px) {
  21. html {
  22. font-size: 80px;
  23. }
  24. }

二、引用字体图标

使用步骤
1.导入css文件
2.引用图标名称
3.设置样式

1.实例

  1. <!-- 注意这里引用字体图标的名称要一致 -->
  2. <spa class="iconfont icon-jingdong iconjingdong"></span>
  3. css设置
  4. /* 注意先导入字体图标css */
  5. @import 'font_icon/iconfont.css';
  6. /* 设置字体图标样式 */
  7. .iconfont {
  8. font-size: 50px;
  9. background-color: blueviolet;
  10. }
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:路径一定要结合自身目录
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post