【css】响应式布局 @media媒介 适配平板手机
// 大型设备(大台式电脑,1200px 起) @media screen and (min-width:1200px) { //... } // 中型设备(台式电脑,992px 起) @media screen and (min-width:992px) and (max-width:1200px) { //... } // 小型设备(平板电脑,768px 起) @media screen and (min-width:768px) and (max-width:992px) { //... } // 超小设备(手机,小于 768px) @media screen and (max-width:768px) { //... }
本文来自博客园,作者:木子欢儿,转载请注明原文链接:https://www.cnblogs.com/HGNET/p/15202776.html