How to Make Rounded Image Corners in CSS? Last Updated : 13 Nov, 2024 Summarize Comments Improve Suggest changes Share Like Article Like Report Rounded image corners are used to enhance the visual appeal, making images look more smooth and attractive. To make rounded corners on an image, the border-radius property is used. Using border-radius PropertyThe border-radius property in CSS is used to create rounded corners for the image. By setting the border-radius property value to 50px or another value, we can make a circular shape for the corners of the image.Syntax.image { border-radius: value;}Example 1: Using border-radius property with value 50px to make a rounded corners. HTML <h3>Using border-radius Property</h3> <img src="https://media.geeksforgeeks.org/wp-content/uploads/20240222094205/js11.jpg" width="300px" height="auto" style="border-radius: 50px;"> OutputExample 2: The top-left and bottom-right corners of an image can be rounded using border-radius values. HTML <h3>Using Specific border-radius Properties</h3> <img src="https://media.geeksforgeeks.org/wp-content/uploads/20240222094205/js11.jpg" width="300px" height="auto" style="border-top-left-radius: 40px; border-bottom-right-radius: 50px;" /> Output Comment More infoAdvertise with us Next Article How to Make Rounded Image Corners in CSS? A anjalibo6rb0 Follow Improve Article Tags : Web Technologies CSS CSS-Questions Similar Reads How to make rounded corner using CSS ? Creating rounded corners is a popular design technique in web development that enhances the visual appeal of web elements. The CSS border-radius property allows you to easily set the radius of an element's corners, making them rounded. In this article, we will explore how to use the border-radius pr 3 min read How to Make an Image Rounded in Bootstrap ? In Bootstrap, you can make an image rounded by applying the rounded class to it. This class sets the border-radius property, giving the image rounded corners for a softer and more visually appealing appearance. Below are the approaches to make an image rounded in Bootstrap: Table of Content Using ro 2 min read How to Add Rounded Corners to an Image in Tailwind CSS ? Adding rounded corners to an image in Tailwind CSS is an easy way to make your pictures look nicer. Instead of having sharp corners, you can give them smooth, rounded edges. Tailwind CSS has simple classes that let you choose how rounded the corners are, whether just a bit or completely round. Appro 3 min read How to Crop Image in CSS? Cropping images using CSS is an effective way to display only a portion of the image without altering the image file itself. Cropping can allow the designers to focus on the specific parts of the image while maintaining control over how the image fits within the layout. 1. Using overflow PropertyThi 2 min read How To Make An Input Appear Rounded in HTML? To make an input field appear rounded in HTML, you can use the CSS border-radius property. The border-radius property allows you to round the corners of an input box, and you can adjust the value to make the corners more or less rounded.Using border-radiusThe simplest way to create a rounded input f 3 min read Like