CSS 媒体查询
什么是媒体查询 media query?
1 | /*简单的媒体查询*/ |
为什么需要媒体查询?
一套样式不可能适应各种大小的屏幕针对不同的屏幕大小写样式,让我们的页面在不同大小的屏幕上都能正常显示
什么是媒体类型?
真正广泛使用且所有浏览器都兼容的媒介类型是’screen’和’all’
1 | /* |
媒体查询中的逻辑
与 ( and )
1 | @media screen and (min-width:900px) and (max-width: 1024px){ |
或 ( )
1 | @media screen and (min-width:1024px),(max-width: 900px){ |
非 ( not )
1 | @media not screen and (min-width:1024px),screen and(max-width: 900px){ |