企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## 简单案例 ``` <style> #box { width: 200px; height: 200px; background-color: black; } @media screen and (max-width: 768px) { #box { background-color: pink; } } @media screen and (min-width: 768px) and (max-width: 1200px) { #box { background-color: skyblue; } } @media screen and (min-width: 1200px) { #box { background-color: yellow; } } </style> </head> <body> <div id="box"> </div> </body> ```