媒体查询方式

  1. <style>
  2. /* screen : 屏幕 */
  3. @media screen and (min-width: 1200px){
  4. /* min-width:1200px */
  5. /* 当屏幕宽度超过1200px时,该处的样式生效 */
  6. .box{
  7. background: black;
  8. }
  9. }
  10. @media all and (max-width:800px) and (min-width: 600px){
  11. /* // 当屏幕小于800px时背景是蓝色 ,并且宽度大于600像素*/
  12. .box{
  13. background: blue;
  14. }
  15. }
  16. orientation:方向
  17. portrait:竖屏
  18. landscape:横屏
  19. @media (orientation:portrait){
  20. body{
  21. background:#fff
  22. }
  23. }
  24. @media (orientation:landscape){
  25. body{
  26. background:#000
  27. }
  28. }
  29. </style>