-2

I am unable to remove rounded corners from checkbox element and unable to change its shadow and background-color.

Can some on help me to achieve this? I tried with:

input[type="checkbox"] {
    background-color: white;
    border-radius: 0px;}
cimmanon
  • 62,582
  • 13
  • 151
  • 162
Chandrika Desai
  • 101
  • 1
  • 2
  • 7

1 Answers1

0

Simply remove default class of checkbox

<div class="checkbox">
  <label><input type="checkbox" value="">Option 1</label>
</div>