Rounded Images in Bootstrap framework

Bootstrap provides various UI CSS classes to make your website responsive and mobile-first. Use the `img-rounded` class for images with rounded corners and the `img-circle` class for circular images.

Example:
 
<div style="margin:40px">
<img width="140px" height="140px" class="img-circle" src="mona-lisa.jpg"/>
</div>

<div style="margin:40px">
<img width="140px" height="140px" class="img-rounded" src="mona-lisa.jpg"/>
</div>
Output:
Bootstrap rounded and circled image
Bootstrap rounded and circled image


FAQ:

What is Bootstrap?

Bootstrap is a popular front-end framework for developing responsive and mobile-first websites.

How do I make an image rounded in Bootstrap?

To make an image rounded, use the `img-rounded` class on the image element.

How do I make an image circular in Bootstrap?

To make an image circular, use the `img-circle` class on the image element.

Comments & Discussion

Facing issues? Have questions? Post them here! We're happy to help!