CSS3 Media Query_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:12:38
Original
883 people have browsed it

通过Media Query 媒体查询可以针对符合相应条件的媒体设置特定的样式。

引入方式

引入媒体查询的方式有两种。

link 方式引入

<link rel="stylesheet" media="screen and (max-width: 600px)" href="small.css" />
Copy after login

css 中引入

 @media screen and (max-width: 600px) {   选择器 {     属性:属性值;   } }
Copy after login

常见的 Media Query

兼容性参考

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template