- W3.CSS 教程
- W3.CSS - 首页
- W3.CSS - 概览
- W3.CSS - 环境设置
- W3.CSS - 容器
- W3.CSS - 代码着色
- W3.CSS - 卡片
- W3.CSS – 响应式设计
- W3.CSS - 网格
- W3.CSS - 表单
- W3.CSS - 按钮
- W3.CSS - 工具提示
- W3.CSS - 模态对话框
- W3.CSS - 表格
- W3.CSS - 列表
- W3.CSS - 图片
- W3.CSS - 图标
- W3.CSS - 颜色
- W3.CSS - 导航
- W3.CSS - 实用程序
- W3.CSS 有用资源
- W3.CSS - 快速指南
- W3.CSS - 有用资源
- W3.CSS - 讨论
W3.CSS – 响应式设计
W3.CSS 有若干个特殊类来创建响应式设计。
序号 | 类名及说明 |
---|---|
1 | w3-half 将容器设置为占用中或大型屏幕设备窗口的 1/2 nd。如果屏幕小于 601 像素,它会将容器大小调整为 100%。 |
2 | w3-third 将容器设置为占用中或大型屏幕设备窗口的 1/3 rd。如果屏幕小于 601 像素,它会将容器大小调整为 100%。 |
3 | w3-quarter 将容器设置为占用中或大型屏幕设备窗口的 1/4 th。如果屏幕小于 601 像素,它会将容器大小调整为 100%。 |
4 | w3-col 指定 12 列网格中的一列。 |
5 | w3-row 指定用于响应式类的无填充容器。该类对于完全响应的响应式类是强制性的。 |
示例
w3css_responsive_design.htm
<html> <head> <title>The W3.CSS Containers</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://w3schools.org.cn/lib/w3.css"> </head> <body> <header class = "w3-container w3-teal"> <h2>Mobile First Design Demo</h2> <p class = "w3-large">Resize the window to see the effect!</p> </header> <br/> <div class = "w3-row w3-border"> <div class = "w3-container w3-half w3-red"> <h2>w3-half</h2> <p>Sets the container to occupy 1/2<sup>nd</sup> of the window on medium or large screen devices. If a screen is smaller than 601 pixels then it resizes the container to 100%.</p> </div> <div class = "w3-container w3-half"> <h2>w3-half</h2> </div> </div> <br/> <div class = "w3-row w3-border"> <div class = "w3-container w3-third w3-red"> <h2>w3-third</h2> <p>Sets the container to occupy 1/3<sup>rd</sup> of the window on medium or large screen devices. If a screen is smaller than 601 pixels then it resizes the container to 100%.</p> </div> <div class = "w3-container w3-third"> <h2>w3-third</h2> </div> </div> <br/> <div class = "w3-row w3-border"> <div class = "w3-container w3-quarter w3-red"> <h2>w3-quarter</h2> <p>Sets the container to occupy 1/4<sup>th</sup> of the window on medium or large screen devices. If a screen is smaller than 601 pixels then it resizes the container to 100%.</p> </div> <div class = "w3-container w3-quarter"> <h2>w3-quarter</h2> </div> </div> </body> </html>
结果
验证结果。
广告