Hey, does anyone know how to change the css of a segment- button from square to round ?
without borders ?
…
Hey, does anyone know how to change the css of a segment- button from square to round ?
without borders ?
…
It’s a css trick that’s pretty much everywhere on the internet http://codeitdown.com/css-round-buttons/ or Google “css round button”
Thanks @itlr . For some reason they come out over. :
![]()
Try this sample code, it gives you nice round border. You can also fill it with color or anything else you need.
.yourClass {
height: 120px;
width: 120px;
border: 2px solid red;
border-radius: 50%;
}