示例实时演示
<html> <head> <style> body { background-color: lightpink; } @media screen and (max-width: 420px) { body { background-color: lightblue; } } </style> </head> <body> <p>if screen size is less than 420px, then it will show lightblue color, or else it will show light pink color</p> </body></html>
以上就是为不同尺寸设备设置不同css样式规则的媒体查询的详细内容。
