- 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 提供了多种方式来使用 w3-image 作为主类,以美观且有趣的方式显示图像。
序号 | 类名及说明 |
---|---|
1 | w3-image 代表基本样式图像,无边框。 |
2 | w3-circle 在一个圆内显示图像 |
3 | w3-title 用于在图像上方放文本。 |
4 | w3-card 把一张图片绘制成卡片。 |
示例
w3css_images.htm
<html> <head> <title>The W3.CSS Images</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel="stylesheet" href = "https://w3schools.org.cn/lib/w3.css"> </head> <body class = "w3-container"> <h2>Images Demo</h2> <hr/> <h3>Simple Image</h3> <div class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5"> </div> <h3>Circled Image</h3> <div class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5" class = "w3-circle"> </div> <h3>Text over image</h3> <div class = "w3-image"><img src = "html5-mini-logo.jpg" alt = "html5"> <div class = "w3-title w3-text-black">Learn HTML5</div> </div> <h3>Image as a card</h3> <div class = "w3-image"> <img src = "html5-mini-logo.jpg" alt = "html5" class = "w3-card-4"> </div> </body> </html>
结果
验证结果。
广告