美文网首页
笔记:Bootstrap4 图像形状

笔记:Bootstrap4 图像形状

作者: stustudy | 来源:发表于2019-08-12 15:14 被阅读0次

.rounded 类可以让图片显示圆角效果:

<img src="cinqueterre.jpg" class="rounded" alt="Cinque Terre">

.rounded-circle 类可以设置椭圆形图片:

<img src="cinqueterre.jpg" class="rounded-circle" alt="Cinque Terre">

.img-thumbnail 类用于设置图片缩略图(图片有边框):

<img src="cinqueterre.jpg" class="img-thumbnail" alt="Cinque Terre">

使用 .float-right 类来设置图片右对齐,使用 .float-left 类设置图片左对齐:

<img src="paris.jpg" class="float-left">

<img src="cinqueterre.jpg" class="float-right">

图像有各种各样的尺寸,我们需要根据屏幕的大小自动适应。可以通过在 <img> 标签中添加 .img-fluid 类来设置响应式图片。.img-fluid 类设置了 max-width: 100%; 、 height: auto; :

<img class="img-fluid" src="img_chania.jpg" alt="Chania">

相关文章

网友评论

      本文标题:笔记:Bootstrap4 图像形状

      本文链接:https://www.haomeiwen.com/subject/yajujctx.html