ani
ani

Reputation: 516

Styling checkbox as square

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 ??

Upvotes: 1

Views: 10373

Answers (2)

kind user
kind user

Reputation: 41893

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

Jsfiddle

Upvotes: 1

zoubida13
zoubida13

Reputation: 1759

Just remove the border radius directives or set

 border-radius : 0;

Upvotes: 1

Related Questions