0

I have the following code to make a box shadow:

box-shadow: inset 0 0 20vw 0 #000;

It will not work on Android. I am running 4.4.2 and Chrome 45.

tester123
  • 1,033
  • 2
  • 12
  • 17

1 Answers1

0

That code should work. It's likely that 20vw (which is 20% of the width of the browser window) is far too high and the inset shadow takes up the entire element.

Nicholas
  • 33
  • 2
  • 3