css CSS媒体查询

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS媒体查询相关的知识,希望对你有一定的参考价值。

/*
Media Queries are composed of media types and media features
media types: various devices that can display HTML documents
  print: matches to printers and other print-related displays
  speech: screen readers
  screen: all devices that are not print or speech
  all: default
  
media features: targets a single specific feature of the device in question
•most used feature is: width
•often used with a min- or max- prefix

Add media queries 2 ways:
1. In HTML to link to a specific css file: <link media-"screen and (max-width: 400px)" rel="stylesheet" href="mobile.css">
2. In CSS using @media keyword and {} braces
  @media (max-width: 400px){
    .classname {
       background: white;....
    }
  }

以上是关于css CSS媒体查询的主要内容,如果未能解决你的问题,请参考以下文章

CSS媒体查询总结

CSS3媒体查询总结

覆盖 CSS 媒体查询

详解css媒体查询

为响应式设计应用 css 媒体查询时 css 发生变化

在选择器中定义 CSS 媒体查询