用@media做自適應的css
阿新 • • 發佈:2021-01-12
技術標籤: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
}
}