"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Create Curved Divs Using CSS?

How Can I Create Curved Divs Using CSS?

Posted on 2025-02-07
Browse:564

How Can I Create Curved Divs Using CSS?

Creating Curved Divs with CSS

You can achieve a curved bottom edge on a div using CSS with the following techniques:

Using Border-radius:

This method involves setting the border-radius property to define the curve's radius. For a curved bottom edge, you can use the following syntax:

border-radius: 0 0 200px 200px;

This will create a div with a bottom edge that curves inward.

Using Radial-Gradient:

If you prefer a transparent curved shape, you can utilize the radial-gradient property:

body {
  background: pink;
}

.container {
  margin: 0 auto;
  width: 500px;
  height: 200px;
  background: radial-gradient(110% 50% at bottom, transparent 50%, lightblue 51%);
}

This technique creates a transparent gradient that curves the bottom edge of the div, resulting in a subtle curve effect.

Here's an example HTML code to use with either method:

For more variations and additional configurations, you can visit the author's website at https://css-shape.com/curved-edge/. Experiment with these techniques to create stunning and visually appealing curved divs.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3