方式一:集中在一张表里
@media all and (max-width:1024px) {
1024到768px
}
@media all and (max-width:760px) {
414px-786之间
}
@media all and (max-width:414px) {
0-414px之间的
}
方式二:每个样式一张表,引入方式
<link rel="stylesheet" media="all and (max-width:1024px)"href="../css/1.css">
<link rel="stylesheet" media="all and (max-width:768px)"href="../css/2.css">
<link rel="stylesheet" media="all and (max-width:414px)"href="../css/3.css">