@media screen and (min-width: 965px){ //style here } @media screen and (max-width: 965px){ //some other style } 小于或等于965px时,一切正常,但是当出现965px的屏幕时,就会出现错误有什么办法可以解决 最佳答案 只需将第二个更改为@media screen and (max-width: 964px){ 这样,y将会保持分开并且不会互相干扰。