web中媒体查询的方法
程序员文章站
2022-03-17 22:57:18
...
定位布局
媒体查询的代码:
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style> .a { border: 1px solid #000000; width: 100px; height: 100px; background-color: #000000; } @media only screen and (min-width: 300px) and (max-width: 640px) { .a { background-color: red; } } @media only screen and (min-width: 700px) { .a { background-color: green; } } @media only screen and (max-width:200px ) { .a { background-color: blue; } } </style> </head> <body> <p class="a"></p> </body></html>
以上就是web中媒体查询的方法 的详细内容,更多请关注其它相关文章!
推荐阅读
-
设置允许/拒绝从网络中访问本地电脑的方法
-
PHP中类的继承与方法重写
-
利用Python中unittest实现简单的单元测试方法介绍
-
详解如何从宿主机拖动复制文件到虚拟机VM中的解决方法
-
win2008 r2 iis7.5中限制带宽的方法(图文)
-
在centos7 中docker info报错docker bridge-nf-call-iptables is disabled 的解决方法
-
Win2008 R2中IIS7.5配置完网站权限不足问题的解决方法
-
linux中ipset命令的使用方法详解
-
VMware中centos系统连接wifi的图文方法
-
Nginx服务器中设置禁止访问文件或目录的方法