search
HomeWeb Front-endHTML TutorialCSS3 @media 查询_html/css_WEB-ITnose

### 定义和使用使用 @media 查询,你可以针对不同的媒体类型定义不同的样式。@media 可以针对不同的屏幕尺寸设置不同的样式,特别是如果你需要设置设计响应式的页面,@media 是非常有用的。当你重置浏览器大小的过程中,页面也会根据浏览器的宽度和高度重新渲染页面。### 浏览器支持表格中的数字表示支持 @media 规则的第一个浏览器的版本号。![输入图片说明](https://static.oschina.net/uploads/img/201603/02172257_ik4C.png "在这里输入图片标题")### CSS 语法```@media mediatype and|not|only (media feature) {    CSS-Code;}```你也可以针对不同的媒体使用不同 stylesheets :```<link rel="stylesheet" media="mediatype and|not|only (media feature)" href="mystylesheet.css">```### 媒体类型(mediatype)|值	  |描述||-|-||all	  |用于所有设备||aural	  |已废弃。用于语音和声音合成器||braille  |	已废弃。 应用于盲文触摸式反馈设备||embossed |	已废弃。 用于打印的盲人印刷设备||handheld |	已废弃。 用于掌上设备或更小的装置,如PDA和小型电话||print	  |用于打印机和打印预览||projection|	已废弃。 用于投影设备||screen	  |用于电脑屏幕,平板电脑,智能手机等。||speech	|应用于屏幕阅读器等发声设备||tty	|已废弃。 用于固定的字符网格,如电报、终端设备和对字符有限制的便携设备||tv	|已废弃。 用于电视和网络电视|### 媒体功能(media feature)|值|	描述||-|-||aspect-ratio|	定义输出设备中的页面可见区域宽度与高度的比率||color|	定义输出设备每一组彩色原件的个数。如果不是彩色设备,则值等于0||color-index|	定义在输出设备的彩色查询表中的条目数。如果没有使用彩色查询表,则值等于0||device-aspect-ratio|	定义输出设备的屏幕可见宽度与高度的比率。||device-height|	定义输出设备的屏幕可见高度。||device-width	|定义输出设备的屏幕可见宽度。||grid|	用来查询输出设备是否使用栅格或点阵。||height|	定义输出设备中的页面可见区域高度。||max-aspect-ratio|	定义输出设备的屏幕可见宽度与高度的最大比率。||max-color|	定义输出设备每一组彩色原件的最大个数。||max-color-index|	定义在输出设备的彩色查询表中的最大条目数。||max-device-aspect-ratio|	定义输出设备的屏幕可见宽度与高度的最大比率。||max-device-height|	定义输出设备的屏幕可见的最大高度。||max-device-width|	定义输出设备的屏幕最大可见宽度。||max-height	|定义输出设备中的页面最大可见区域高度。||max-monochrome	|定义在一个单色框架缓冲区中每像素包含的最大单色原件个数。||max-resolution	|定义设备的最大分辨率。||max-width	|定义输出设备中的页面最大可见区域宽度。||min-aspect-ratio|	定义输出设备中的页面可见区域宽度与高度的最小比率。||min-color	|定义输出设备每一组彩色原件的最小个数。||min-color-index|	定义在输出设备的彩色查询表中的最小条目数。||min-device-aspect-ratio|	定义输出设备的屏幕可见宽度与高度的最小比率。||min-device-width|	定义输出设备的屏幕最小可见宽度。||min-device-height|	定义输出设备的屏幕的最小可见高度。||min-height|	定义输出设备中的页面最小可见区域高度。||min-monochrome|	定义在一个单色框架缓冲区中每像素包含的最小单色原件个数||min-resolution|	定义设备的最小分辨率。||min-width	|定义输出设备中的页面最小可见区域宽度。||monochrome	|定义在一个单色框架缓冲区中每像素包含的单色原件个数。如果不是单色设备,则值等于0||orientation	|定义输出设备中的页面可见区域高度是否大于或等于宽度。||resolution	|定义设备的分辨率。如:96dpi, 300dpi, 118dpcm||scan	|定义电视类设备的扫描工序。||width	|定义输出设备中的页面可见区域宽度。|

Statement
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
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!