How to create: rounded corner buttons

Learn how to use CSS to set the style of rounded corner buttons.

How to design the style of rounded corner buttons

Step 1 - Add HTML:

<button class="button button1">2px</button>
<button class="button button2">4px</button>
<button class="button button3">8px</button>
<button class="button button4">12px</button>
<button class="button button5">50%</button>

Step 2 - Add CSS:

Use border-radius Attribute adds rounded corners to the button:

.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
}
.button1 {border-radius: 2px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}

Try it yourself

Related pages

Tutorial:CSS button