首页  >  文章  >  web前端  >  为不同尺寸设备设置不同CSS样式规则的媒体查询

为不同尺寸设备设置不同CSS样式规则的媒体查询

WBOY
WBOY转载
2023-08-30 23:57:031096浏览

为不同尺寸设备设置不同CSS样式规则的媒体查询

为不同的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>

以上是为不同尺寸设备设置不同CSS样式规则的媒体查询的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除