1. 程式人生 > 其它 >用@media做自適應的css

用@media做自適應的css

技術標籤:javascriptcss

@media自適應css

@media可以更具查詢條件(查詢條件的true或者false)切換不同的css樣式

@media type and (屬性) / @media not type and (屬性)

  • type
    • screen(螢幕)
    • print(印表機)
    • tty(打字機)
    • 等等
  • 屬性
    • width
    • height
    • orientation(視窗方向)

舉例子:

//讓768以上1200以下背景變紅
@media screen and (min-width:768px) and (max-width:1200px){
    body{
        background-
color:red } }