Home Web Front-end HTML Tutorial CSS:使用CSS媒体查询创建响应式布局 - McBye

CSS:使用CSS媒体查询创建响应式布局 - McBye

May 21, 2016 am 08:42 AM

  现如今在Web前端领域,BootStrap是一个最流行的UI库,其12列的栅栏系统为响应式布局提供了一种对程序员来说很好操作的模式。

  追究Bootstrap的内在原理,其实就是通过媒体查询来完成对不同屏幕大小、不同分辨率、不同设备导致的不同场景下的Css样式的选择。今天我就对媒体查询这一工具或者说方法来进行一个总结。

  从 CSS 版本 2 开始,就可以通过媒体类型在 CSS 中获得媒体支持。

  1、如何使用媒体查询:

<span style="color: #0000ff;"><span style="color: #800000;">link </span><span style="color: #ff0000;">rel</span><span style="color: #0000ff;">="stylesheet"</span><span style="color: #ff0000;"> type</span><span style="color: #0000ff;">="text/css"</span><span style="color: #ff0000;"> href</span><span style="color: #0000ff;">="site.css"</span><span style="color: #ff0000;"> media</span><span style="color: #0000ff;">="screen"</span> <span style="color: #0000ff;">/></span>
<span style="color: #0000ff;"><span style="color: #800000;">link </span><span style="color: #ff0000;">rel</span><span style="color: #0000ff;">="stylesheet"</span><span style="color: #ff0000;"> type</span><span style="color: #0000ff;">="text/css"</span><span style="color: #ff0000;"> href</span><span style="color: #0000ff;">="print.css"</span><span style="color: #ff0000;"> media</span><span style="color: #0000ff;">="print"</span> <span style="color: #0000ff;">/></span></span></span>
Copy after login

  以上的两句引入Css样式表的语句,比一般的Css引入语句就多了一个关键字“media”,media 属性定义了应该用于指定每种媒体类型的样式表:

  • screen 适用于计算机彩色屏幕。
  • print 适用于打印预览模式下查看的内容或者打印机打印的内容。

  *这里是将media属性放在了Css引入的语句中,所以在以下查询语句中就可以省略screen或者print。

  2、一般的媒体查询语法:

<span style="color: #800000;">@media “media type” condition </span>{<span style="color: #008000;">/*</span><span style="color: #008000;">CSS样式表</span><span style="color: #008000;">*/</span>}
Copy after login

  其中“@media”也可以有另一中写法,“media=”;

  “media type”是应用媒体查询的媒体类型,例如“all”,意思是所有媒体都使用接下来的css样式表;或者“(min-width:800px)”,意思是屏幕最小宽度为800px时使用接下来的CSS样式表,如果屏幕宽度大于800px则不会应用此CSS。

  也就是说,媒体查询包含一个媒体类型,后跟一个或多个检查特定条件(如最小的屏幕宽度)的表达式。通过评估条件的真假,如果改条件为true则应用Css,否则不应用。

  由此我们可以扩展出很多的媒体查询类型。

  3、在Css的媒体查询中,可以使用三种逻辑运算,也即“and”,“or”,“not”,意思我当然不用解释。举几个例子一眼就明白了:

<span style="color: #008000;">/*</span><span style="color: #008000;">在将某个媒体查询应用于所有媒体类型时,会省略 all</span><span style="color: #008000;">*/</span><span style="color: #800000;">
@media (min-width:800px) </span>{<span style="color: #ff0000;"> ... </span>}
<span style="color: #008000;">/*</span><span style="color: #008000;">宽度在800~1200px之间时激活</span><span style="color: #008000;">*/</span><span style="color: #800000;">
@media (min-width:800px) and (max-width:1200px) </span>{<span style="color: #ff0000;"> ... </span>}
<span style="color: #008000;">/*</span><span style="color: #008000;">可以使用多个and运算符,这里添加了第三个判断方向为纵向</span><span style="color: #008000;">*/</span><span style="color: #800000;">
@media (min-width:800px) and (max-width:1200px) and (orientation:portrait) </span>{<span style="color: #ff0000;"> ... </span>}
<span style="color: #008000;">/*</span><span style="color: #008000;">宽度为800px或者方向为纵向时激活</span><span style="color: #008000;">*/</span><span style="color: #800000;">
@media (min-width:800px) or (orientation:portrait) </span>{<span style="color: #ff0000;"> ... </span>}
<span style="color: #008000;">/*</span><span style="color: #008000;">宽度不是800px时激活</span><span style="color: #008000;">*/</span><span style="color: #800000;">
@media (not min-width:800px) </span>{<span style="color: #ff0000;"> ... </span>}
Copy after login

  4、宽度和高度非常相似,所以二者的条件可以在一起使用:

<span style="color: #800000;">@media (min-width:800px) and (min-height:400px) </span>{<span style="color: #ff0000;"> ... </span>}
Copy after login

  orientation查询:

<span style="color: #800000;">@media (orientation:portrait) </span>{<span style="color: #ff0000;"> ... </span>}
Copy after login

  不带max-或min-的查询,当然这种查询的的可用性不是很大:

<span style="color: #800000;">@media (width:800px) and (height:400px) </span>{<span style="color: #ff0000;"> ... </span>}
Copy after login

  5、常见媒体查询

  因为 Apple 首次向市场推出了用户智能手机和平板电脑产品,所以下列大多数媒体查询都是基于这些型号的设备。

  如果目标是横向模式智能手机,则使用: @media (min-width: 321px) { ... }

  如果目标是纵向模式智能手机,则使用: @media (max-width: 320px) { ... }

  如果目标是横向模式 Apple iPad,则使用: @media (orientation: landscape) { ... }

  如果目标是纵向模式 iPad,则使用: @media (orientation: portrait) { ... }

  您可能已经注意到了,iPad 上使用的是 orientation 媒体特性,而 width 用于 Apple iPhone 之上。主要是因为 iPhone 不支持orientation 媒体特性。您必须使用 width 模拟这些方向断点。

  6、嵌套的媒体查询:

<span style="color: #800000;">#header </span>{<span style="color: #ff0000;">
  width</span>:<span style="color: #0000ff;"> 400px</span>;<span style="color: #ff0000;">
  @media (min-width</span>:<span style="color: #0000ff;"> 800px) {
    width: 100%</span>;
  }<span style="color: #800000;">
}</span>
Copy after login

  以上代码编译后为以下的结果:

<span style="color: #800000;">#header </span>{<span style="color: #ff0000;">
  width</span>:<span style="color: #0000ff;"> 400px</span>;
}<span style="color: #800000;">
@media (min-width: 800px) </span>{<span style="color: #ff0000;">
  #header {
    width</span>:<span style="color: #0000ff;"> 100%</span>;
  }<span style="color: #800000;">
}</span>
Copy after login

  以上以宽度为例来对媒体查询进行一个小结, 管中窥豹,可见一斑。width和height只是两种可以用媒体查询来进行控制的属性,还有颜色(color)、颜色索引(integer)、宽高比(ratio)等属性都是也可以使用的。

  

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1665
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

HTML: The Structure, CSS: The Style, JavaScript: The Behavior HTML: The Structure, CSS: The Style, JavaScript: The Behavior Apr 18, 2025 am 12:09 AM

The roles of HTML, CSS and JavaScript in web development are: 1. HTML defines the web page structure, 2. CSS controls the web page style, and 3. JavaScript adds dynamic behavior. Together, they build the framework, aesthetics and interactivity of modern websites.

The Future of HTML, CSS, and JavaScript: Web Development Trends The Future of HTML, CSS, and JavaScript: Web Development Trends Apr 19, 2025 am 12:02 AM

The future trends of HTML are semantics and web components, the future trends of CSS are CSS-in-JS and CSSHoudini, and the future trends of JavaScript are WebAssembly and Serverless. 1. HTML semantics improve accessibility and SEO effects, and Web components improve development efficiency, but attention should be paid to browser compatibility. 2. CSS-in-JS enhances style management flexibility but may increase file size. CSSHoudini allows direct operation of CSS rendering. 3.WebAssembly optimizes browser application performance but has a steep learning curve, and Serverless simplifies development but requires optimization of cold start problems.

The Future of HTML: Evolution and Trends in Web Design The Future of HTML: Evolution and Trends in Web Design Apr 17, 2025 am 12:12 AM

The future of HTML is full of infinite possibilities. 1) New features and standards will include more semantic tags and the popularity of WebComponents. 2) The web design trend will continue to develop towards responsive and accessible design. 3) Performance optimization will improve the user experience through responsive image loading and lazy loading technologies.

HTML vs. CSS vs. JavaScript: A Comparative Overview HTML vs. CSS vs. JavaScript: A Comparative Overview Apr 16, 2025 am 12:04 AM

The roles of HTML, CSS and JavaScript in web development are: HTML is responsible for content structure, CSS is responsible for style, and JavaScript is responsible for dynamic behavior. 1. HTML defines the web page structure and content through tags to ensure semantics. 2. CSS controls the web page style through selectors and attributes to make it beautiful and easy to read. 3. JavaScript controls web page behavior through scripts to achieve dynamic and interactive functions.

HTML: Building the Structure of Web Pages HTML: Building the Structure of Web Pages Apr 14, 2025 am 12:14 AM

HTML is the cornerstone of building web page structure. 1. HTML defines the content structure and semantics, and uses, etc. tags. 2. Provide semantic markers, such as, etc., to improve SEO effect. 3. To realize user interaction through tags, pay attention to form verification. 4. Use advanced elements such as, combined with JavaScript to achieve dynamic effects. 5. Common errors include unclosed labels and unquoted attribute values, and verification tools are required. 6. Optimization strategies include reducing HTTP requests, compressing HTML, using semantic tags, etc.

HTML vs. CSS and JavaScript: Comparing Web Technologies HTML vs. CSS and JavaScript: Comparing Web Technologies Apr 23, 2025 am 12:05 AM

HTML, CSS and JavaScript are the core technologies for building modern web pages: 1. HTML defines the web page structure, 2. CSS is responsible for the appearance of the web page, 3. JavaScript provides web page dynamics and interactivity, and they work together to create a website with a good user experience.

HTML: Is It a Programming Language or Something Else? HTML: Is It a Programming Language or Something Else? Apr 15, 2025 am 12:13 AM

HTMLisnotaprogramminglanguage;itisamarkuplanguage.1)HTMLstructuresandformatswebcontentusingtags.2)ItworkswithCSSforstylingandJavaScriptforinteractivity,enhancingwebdevelopment.

See all articles