Answers for "can i make a circle button with javascript"

CSS
0

circle button html

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

circle button css

.btn{
    width: 50px;
    height:50px;
    border-radius: 50%;
    border: none;
    color: white;
    background: #dc3545; 
    padding: 0px;
    text-align:center;
}
Posted by: Guest on October-15-2021

Code answers related to "can i make a circle button with javascript"

Browse Popular Code Answers by Language