🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to CSS Notes
Topic #116

CSS Rounded Corners


CSS Rounded Corners

The CSS border-radius property is used to create rounded corners for elements.


CSS border-radius Property

The border-radius property defines the radius of an element's corners.

This property can be applied to all elements with a background-color, a border, or a background-image.

Here are three examples:

  1. Rounded corners for an element with a background color:

Rounded corners!

  1. Rounded corners for an element with a border:

Rounded corners!

  1. Rounded corners for an element with a background image:

Rounded corners!

Here is the code:

Example

   #div1 {
  border-radius: 25px;
  background-color: #73AD21;
  padding: 20px;
  width: 200px;
  height: 150px;
}

#div2 {
  border-radius: 25px;
  border: 2px solid #73AD21;
  padding: 20px;
  width: 200px;
  height: 150px;
}

#div3 {
  border-radius: 25px;
  background-image: url(paper.gif);
  background-position: left top;
  background-repeat:
repeat;
  padding: 20px;
  width:
200px;
  height: 150px;
}

Tip: The border-radius property is actually a shorthand property for the border-top-left-radius, border-top-right-radius, border-bottom-right-radius and border-bottom-left-radius properties.


CSS border-radius - Specify Each Corner

The border-radius property can have from one to four values. Here are the rules:

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):

Three values - border-radius: 15px 50px 30px; (first value applies to top-left corner, second value applies to top-right and bottom-left corners, and third value applies to bottom-right corner):

Two values - border-radius: 15px 50px; (first value applies to top-left and bottom-right corners, and the second value applies to top-right and bottom-left corners):

One value - border-radius: 15px; (the value applies to all four corners, which are rounded equally:

Here is the code:

Example

   #div1 {
  border-radius: 15px 50px 30px 5px; /* four values */

    background: #04AA6D;

width: 200px;
  height: 150px;
}

#div2 {
  border-radius: 15px 50px 30px; /*
   three values */

     background: #04AA6D;
  width: 200px;

height: 150px;
}

#div3 {
  border-radius: 15px 50px; /* two values */

  background: #04AA6D;
  width: 200px;

height: 150px;
}

#div4 {
  border-radius: 15px; /* one value */

     background: #04AA6D;
  width: 200px;
  height: 150px;
}

CSS Elliptical and Circular Shapes

To create elliptical corners, you must specify two values for each radius, separated by a slash /. The first value defines the horizontal radius, and the second value defines the vertical radius.

To create a oval shape (for a rectangular element), or to create a circular shape (for a square element) set border-radius to 50%.

Example

   #div1 {
  border-radius: 70px / 30px;

background: #04AA6D;
  width: 200px;
  height: 150px;
}

#div2 {
  border-radius: 15px / 50px;
  background:
   #04AA6D;

     width: 200px;
  height: 150px;
}

#div3 {

border-radius: 50%;
  background: #04AA6D;
  width: 200px;
  height: 150px;
}

#div4 {
border-radius: 50%;
background: #04AA6D;
width: 200px;

   height: 200px;
}

CSS Rounded Corners Properties

Property Description
border-radius A shorthand property for setting all the four border---radius properties
border-top-left-radius Defines the shape of the border of the top-left corner
border-top-right-radius Defines the shape of the border of the top-right corner
border-bottom-right-radius Defines the shape of the border of the bottom-right corner
border-bottom-left-radius Defines the shape of the border of the bottom-left corner

Want to go beyond the notes?

Join CodingNow 2.0's CSS course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

CSS Rounded Corners – FAQs

Quick answers about learning CSS Rounded Corners in CSS.

This free note from CodingNow 2.0 explains CSS Rounded Corners in CSS — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every CSS topic on CodingNow 2.0, including CSS Rounded Corners, is 100% free with no signup required.
With focused practice, most students grasp CSS Rounded Corners in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now