◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
为不同的CSS样式规则设置媒体查询,您可以尝试运行以下代码 −
实时演示
<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>
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。