Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AWS AI GO KOTLIN SASS VUE GEN AI CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 4 Images


Bootstrap 4 Image Shapes

Rounded Corners:

Paris

Circle:

NYC

Thumbnail:

San Fran

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 »


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 »

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2023 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.