How do I add rounded corners to a picture?
James Austin
Updated on March 08, 2026
How do I add rounded corners to a picture?
Free online tool to make round corner image in a simple steps. Drop image in tool, set the corner radius in slider, then click Round corner button to process the image. Once process completed, preview of round corner image is displayed along with download button.
How do you make a circular border in CSS?
To create a circle we can set the border-radius on the element. This will create curved corners on the element. If we set it to 50% it will create a circle. If you set a different width and height we will get an oval instead.
How do I make an image fit a circle in CSS?
The main CSS property responsible for the circular shape is the border-radius property. Setting the radius of the corners to 50% of the width/height results in a circle.
How do I make a picture round?
Crop to a specific shape
- In your file, select the picture that you want to crop to a specific shape.
- Click the Format Picture tab.
- Under Adjust, click the arrow next to Crop, point to Mask to Shape, point to a type of shape, and then click the shape that you want to crop the picture to.
How do I center an image in CSS?
To center an image, we have to set the value of margin-left and margin-right to auto and make it a block element by using the display: block; property. If the image is in the div element, then we can use the text-align: center; property for aligning the image to center in the div.
How do I make a picture fit in a circle?
Choose how the picture fits in the shape
- Click a shape created using Shape Fill > Picture.
- Click Picture Tools > Format, and in the Size group, click the arrow under Crop.
- Click Fill or Fit.
- If desired, adjust the crop area using the cropping handles as described under Crop a picture.
How do you curve the edges of an image in CSS?
CSS Rounded Corners
- Tip: This property allows you to add rounded corners to elements!
- Four values – border-radius: 15px 50px 30px 5px; (first value applies to top-left corner, second value applies to top-right corner, third value applies to bottom-right corner, and fourth value applies to bottom-left corner):
How can I draw a circle on a photo?
How to circle out something in a picture?
- Layer > New layer.
- Make the layer to be the same size as the image and layer fill type to transparency.
- On the toolbox select the ellipse select tool and make an ellipse.
- Use the bucket fill tool to paint the ellipse with your desired color.
How do I show a circle in HTML?
There is not technically a way to draw a circle with HTML (there isn’t a HTML tag), but a circle can be drawn. You can use border-radius property, or make a div with fixed height and width and a background with png circle. And there you go you got your circle.