1

I am trying to customize my check box . In the jsfiddle where you can see the customized check box which is circle . I just want to make it a square and I need help to do it . Can someone help me. The fiddle link is http://jsfiddle.net/1aeur58f/125/

border-radius : 100% 

Makes it a circle, how to make it as a square ??

ani
  • 446
  • 1
  • 9
  • 31

2 Answers2

1

Just remove the border radius directives or set

 border-radius : 0;
zoubida13
  • 1,738
  • 12
  • 20
1

Delete the border-radius: 100px; property from the .checkboxFour label or set it to 0.

Jsfiddle

kind user
  • 40,029
  • 7
  • 67
  • 77
  • i need your help.. i couldnt able to align the label next to checkbox. i tried adding seperate label with vertical-alignment : middle but nothing worked :( – ani Mar 07 '17 at 10:54
  • @ani Make a new question, post your whole code and give me the link! (: – kind user Mar 07 '17 at 10:55
  • question is posted http://stackoverflow.com/questions/42650324/customized-check-box-and-label-alignment – ani Mar 07 '17 at 14:04