Loading... ```css /* 去除浏览器默认样式 */ * { margin: 0; padding: 0; box-sizing: border-box; } /* 一个高度为100px的盒子 */ header { height: 100px; background: purple; } /* 当浏览器宽度小于768px的时候 header的背景色变为红色 */ @media screen and (max-width:768px) { header { background: red; } } /* 当浏览器宽度大于768px小于992px时 header的背景色变为天蓝色 */ @media screen and (min-width: 768px) and (max-width: 992px) { header { background: skyblue; } } /* 当浏览器宽度大于1200px时 背景色为粉红色 */ @media screen and (min-width:1200px) { header { background: pink; } } ``` Last modification:September 5, 2023 © Allow specification reprint Support Appreciate the author AliPayWeChat Like 如果觉得我的文章对你有用,请随意赞赏