-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
  • 67,211
  • 17
  • 165
  • 171
Chandrika Desai
  • 101
  • 1
  • 3
  • 8

1 Answers1

0

Simply remove default class of checkbox

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