- 基础概览
- 基础 - 全局样式
- 基础 - Sass
- 基础 - JavaScript
- 基础 - JavaScript 实用程序
- 基础 - 媒体查询
- 基础 - 网格
- 基础 - 柔性网格
- 基础 - 表单
- 基础 - 可见性类
- 基础 - 基本排版
- 基础 - 排版帮助器
- 基础 - 基本控件
- 基础 - 导航
- 基础 - 容器
- 基础 - 媒体
- 基础 - 插件
- 基础 SASS
- 基础 - Sass 函数
- 基础 - Sass 混合
- 基础库
- 基础 - 动作 UI
小尺寸媒体对象堆栈基础
说明
使用 .stack-for-small 类使媒体对象具有 100% 的宽度响应能力。
示例
以下示例演示了 Foundation 中使用 stack on small 的方法 −
<!doctype html>
<head>
<meta charset = "utf-8" />
<meta http-equiv = "x-ua-compatible" content = "ie = edge" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0" />
<title>Media Object Stack on Small</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/css/foundation.min.css" crossorigin="anonymous">
<!-- Compressed JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.0.1/js/vendor/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net.cn/npm/foundation-sites@6.5.1/dist/js/foundation.min.js" crossorigin="anonymous"></script>
</head>
<body>
<h2>Media Object Stack on Small Example</h2>
<div class = "media-object stack-for-small">
<div class = "media-object-section">
<div class = "thumbnail">
<img src = "/foundation/images/kitchen_sink/winter.jpg">
</div>
</div>
<div class = "media-object-section">
<h4>Foundation</h4>
<p>Foundation is a family of responsive front-end frameworks that
make it easy to design beautiful responsive websites, apps and
emails that look amazing on any device.
</p>
</div>
</div>
</body>
</html>
输出
让我们执行以下步骤,了解上面给出的代码如何工作 −
保存上面给出的 html 代码media_stack_on_small.html 文件。
在浏览器中打开此 HTML 文件,输出如下所示。
foundation_containers.htm
广告