Answers for "button border-radius:"

CSS
0

border radius circle button

.btn {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 1px solid red;
}
Posted by: Guest on June-20-2021
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

Browse Popular Code Answers by Language