Answers for "give border radius to text button"

CSS
1

css button:focus border-radius square

button:focus {
  outline: none;
}
Posted by: Guest on December-02-2020
0

border radius circle button

.btn {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 1px solid red;
}
Posted by: Guest on June-20-2021

Code answers related to "give border radius to text button"

Browse Popular Code Answers by Language