Bootstrap 4 Images
<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]-->
Bootstrap 4 Images
❮ Previous
Next ❯
Bootstrap 4 Image Shapes
Rounded Corners:

Circle:

Thumbnail:

Rounded Corners
The .rounded class adds rounded corners to an image:
Example
<img src="cinqueterre.jpg" class="rounded" alt="Cinque Terre">Try it Yourself »
Circle
The .rounded-circle class shapes the image to a circle:
Example
<img src="cinqueterre.jpg" class="rounded-circle" alt="Cinque Terre">Try it Yourself »
Thumbnail
The .img-thumbnail class shapes the image to a thumbnail
(bordered):
Example
<img src="cinqueterre.jpg" class="img-thumbnail" alt="Cinque Terre">Try it Yourself »
<!--
mid_content, all: [300,250][336,280][728,90][970,250][970,90][320,50][468,60]-->
Aligning Images
Float an image to the right with the .float-right class or to the left with .float-left:


Example
<img src="paris.jpg" class="float-left">
<img src="paris.jpg"
class="float-right"> Try it Yourself »
Centered Image
Center an image by adding the utility classes .mx-auto (margin:auto) and .d-block (display:block) to the image:

Example
<img src="paris.jpg" class="mx-auto d-block">Try it Yourself »
Responsive Images
Images come in all sizes. So do screens. Responsive images automatically
adjust to fit the size of the screen.
Create responsive images by adding an .img-fluid class
to the <img> tag. The image will then scale nicely to the parent element.
The .img-fluid class applies max-width: 100%; and height: auto; to the image:
Example
<img class="img-fluid" src="img_chania.jpg" alt="Chania"> Try it Yourself »
<!--
Responsive Embeds
Also let videos or slideshows scale properly on any device.
Classes can be applied directly to <iframe>, <embed>, <video>, and <object> elements.
The following example creates a responsive video by adding an .embed-responsive-item class
to an <iframe> tag (the video will then scale nicely to the parent element).
The containing <div> defines the aspect ratio of the video:
Example
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>Try it Yourself »
What is aspect ratio?
The aspect ratio of an image
describes the proportional relationship between its width and its height. Two common video aspect ratios are 4:3
(the universal video format of the 20th
century), and 16:9 (universal for HD television and European digital
television).
You can choose between two aspect ratio classes:
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>
<!-- 4:3 aspect ratio -->
<div class="embed-responsive embed-responsive-4by3">
<iframe class="embed-responsive-item" src="..."></iframe>
</div>Try it Yourself »
Complete Bootstrap 4 Image Reference
For a complete reference of all image classes, go to our complete
Bootstrap 4 Image Reference.
-->
❮ Previous
Next ❯