按浏览器宽度应用不同样式
小于 1 分钟
按浏览器宽度应用不同样式
以下是一个例子。
@media all and (max-width: 768px) {
// styles for mobile devices here
}
@media all and (min-width: 769px) {
// styles for desktop devices here
}
以下是一个例子。
@media all and (max-width: 768px) {
// styles for mobile devices here
}
@media all and (min-width: 769px) {
// styles for desktop devices here
}