Answers for "bootstrap circle button"

2

how to make circle button in bootstrap

<button type="button" class="btn btn-primary btn-circle btn-sm">Blue</button>
Posted by: Guest on September-23-2021
0

bootstrap circle button

<button type="button" class="btn btn-info btn-circle">
  <i class="glyphicon glyphicon-ok"></i>
</button>
Posted by: Guest on June-20-2021
7

round button css

.btn {
  display:block;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 1px solid red;
  
}
Posted by: Guest on March-16-2020

Browse Popular Code Answers by Language