Bootstrap4 图像,本章介绍Bootstrap4
常使用的集中图片效果,如:圆角图片、椭圆图片、缩略图、图片对齐、响应式图片,不同的图片效果由不同的class
来标识。
圆角图片
.rounded
类可以让图片显示圆角效果:
<img src="lena.jpg" class="rounded" alt="Cinque Terre">
输出图像如下:
椭圆图片
.rounded-circle
类可以设置椭圆形图片:
<img src="lena.jpg" class="rounded-circle" alt="Cinque Terre">
输出图像如下:
缩略图
.img-thumbnail
类用于设置图片缩略图(图片有边框):
<img src="lena.jpg" class="img-thumbnail" alt="Cinque Terre">
输出图像如下:
图片对齐
使用 .float-right
类来设置图片右对齐,使用 .float-left
类设置图片左对齐:
<img src="lena.jpg" class="float-left">
<img src="lena.jpg" class="float-right">
输出图像如下:
响应式图片
图像有各种各样的尺寸,我们需要根据屏幕的大小自动适应。
我们可以通过在 <img>
标签中添加 .img-fluid
类来设置响应式图片。
.img-fluid
类设置了 max-width: 100%;
、 height: auto;
<img class="img-fluid" src="lena.jpg" alt="Chania">