@media screen and (min-width:1200px){ //大于等于1200px才会进入 }
@media screen and (max-width:375px) { //小于等于375能够进入 html { background: red; } }
因而可知,边界都包含在内。css
更多参考链接 https://www.runoob.com/cssref/css3-pr-mediaquery.htmlhtml