热门关键字:
jquery > jquery教程 > css3 > css3 media的通用代码

css3 media的通用代码

1327
作者:管理员
发布时间:2014/11/14 15:42:29
评论数:0
转载请自觉注明原文:http://www.jq-school.com/Show.aspx?id=463
/* media */
/* 横屏 */
@media screen and (orientation:landscape){
      
}
/* 竖屏 */
@media screen and (orientation:portrait){
      
}
/* 窗口宽度<960,设计宽度=768 */
@media screen and (max-width:959px){
      
}
/* 窗口宽度<768,设计宽度=640 */
@media screen and (max-width:767px){
      
}
/* 窗口宽度<640,设计宽度=480 */
@media screen and (max-width:639px){
      
}
/* 窗口宽度<480,设计宽度=320 */
@media screen and (max-width:479px){
      
}
/* windows UI 贴靠 */
@media screen and (-ms-view-state:snapped){
      
}
/* 打印 */
@media print{
      
}




如果您觉得本文的内容对您的学习有所帮助:支付鼓励



关键字:css media的通用代码
友荐云推荐