zoukankan      html  css  js  c++  java
  • CSS3学习笔记-响应式布局

    三种设置方式

    <link rel="stylesheet" type="text/css" href="smallscreen.css" media="only screen and (max- 480px)" />
    //Imported stylesheet within the <style> element
    @import "smallscreen.css" only screen and (max- 480px);
    <style type="text/css">
      @media only screen and (max- 480px){
        /* rules defined inside here are only applied to browsers that support CSS media queries and the browser window is 480px or smaller */
      }
    </style>

    max-width 媒体类型小于或等于时应用

    only用来指定特定的媒体,可以排除不支持媒体查询的浏览器

    弹性图片

    img {max-100%;}

    设置断点

    主要断点 大于1024px 小于768px 小于640px 小于480px 小于320px

  • 相关阅读:
    scapy--初识
    python--re(匹配字符串)
    python--pdb
    Fedora 配置
    Ubuntu 18.04 配置
    python--git
    python--os
    day28 Pyhton 面向对象 继承
    day28 Pyhton MRO和C3算法
    数学知识回顾02
  • 原文地址:https://www.cnblogs.com/goOtter/p/9673978.html
Copyright © 2011-2022 走看看