Bootstrap4 图片设置
2021-10-08 09:30 更新
Bootstrap4中,我们可以使用各种类对图片的形状、对齐等进行设置。具体使用的类如下:
图片形状
向一个<img>元素添加类,轻松地在项目中样式化图片。
rounded:让图片显示圆角效果
rounded-circle:设置椭圆形图片
img-thumbnail:用于设置图片缩略图(图片有边框):
<img src="图片地址" class="rounded">
<img src="图片地址" class="rounded-circle">
<img src="图片地址" class="img-thumbnail">
在bootstrap4中重命名了图片相关的一些类,其中:
- 重命名
.img-responsive
为.img-fluid
;- 重命名
.img-rounded
为.rounded
- 重命名
.img-circle
为.rounded-circle
图片对齐
使用 .float-right 类来设置图片右对齐,使用 .float-left 类设置图片左对齐:
具体使用方法:
<img src="图片地址" class="float-left">
<img src="图片地址" class="float-right">
响应式图片
在Bootstrap4,我们可以通过在 <img> 标签中添加 .img-fluid 类来设置响应式图片。
.img-fluid 类设置了 max-width: 100%; 、 height: auto; :
实例:
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap 实例</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="external nofollow" target="_blank" >
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js" rel="external nofollow" ></script>
<script src="https://cdn.bootcss.com/popper.js/1.12.5/umd/popper.min.js" rel="external nofollow" ></script>
<script src="https://cdn.bootcss.com/bootstrap/4.1.0/js/bootstrap.min.js" rel="external nofollow" ></script>
</head>
<body>
<div class="container">
<h2>响应式图片</h2>
<p>.img-fluid 类可以设置响应式图片,重置浏览器大小查看效果:</p>
<img src="https://www.w3cschool.cn/attachments/image/20180524/1527144620597215.png" class="img-fluid"">
</div>
</body>
</html>
以上内容是否对您有帮助:
更多建议: