Answers for "curve the edges of a button html"

CSS
1

button edges rounded css

button {
  border-radius: 25px;
}
Posted by: Guest on November-05-2020
1

rounded corners css button

.btn{
    border: none;
    padding: 7px 26px;
    text-align: center;
    color: white;
    background: #dc3545;
    border-radius: 40px;
}
Posted by: Guest on October-15-2021

Code answers related to "curve the edges of a button html"

Browse Popular Code Answers by Language