Ai
1 Star 0 Fork 0

dexterleslie/demonstration

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
demo-using-media-query-with-html.html 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
dexterleslie 提交于 2025-04-01 23:39 +08:00 . 初次提交
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!--
https://css-tricks.com/a-complete-guide-to-css-media-queries/
根据不同的浏览器尺寸使用不同的css文件
-->
<style>
.div1 {
width: 100px;
height: 100px;
}
</style>
<!-- <=600px -->
<link rel="stylesheet" href="le.css" media="only screen and (max-width: 600px)">
<!-- >600px and <=700px -->
<link rel="stylesheet" href="gt-and-le.css" media="only screen and (min-width: 600px) and (max-width: 700px)">
<!-- >700px -->
<style media="only screen and (min-width: 700px)">
.div1 {
background-color: blue;
}
</style>
</head>
<body>
<div class="div1">
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dexterleslie/demonstration.git
git@gitee.com:dexterleslie/demonstration.git
dexterleslie
demonstration
demonstration
main

搜索帮助