How to create: pill-shaped button
- Previous page Download button
- Next page Notification button
Learn how to create a pill-shaped button using CSS.
How to create a pill-shaped button
Step 1 - Add HTML:
<button class="button">Pill Button</button>
Step 2 - Add CSS:
Add rounded corners to the button using the border-radius property:
.button { background-color: #ddd; border: none; color: black; padding: 10px 20px; text-align: center; text-decoration: none; display: inline-block; margin: 4px 2px; cursor: pointer; border-radius: 16px; {}
Related pages
Tutorial:CSS button
- Previous page Download button
- Next page Notification button