I want to make a shadow at the div block, but that it was only on one side - on top.
Original style:
div { box-shadow: 0 15px 30px 10px rgba(0, 0, 0, .5); width: 200px; height: 150px; overflow: hidden; margin: 30px; } <div></div> The problem is that the shadow is also present on the left and on the right (quite a drop and below, which is also unacceptable). Various manipulations with 2-4 values did not lead to anything (and I want to keep the current positioning). Shadow anyway is still present on the sides.
How to achieve the desired result?