Is it possible to make the shadow appear only on one side (Top) using CSS?
I've tried multiple solutions, but I always end up with a shadow on all sides.
This is what I have attempted:
.box-container{
width:100%;
height: 80px;
padding:10px 10%;
background-color: #f00;
}
.box-inner{
width:80%;
height: 100%;
background-color: #ff0;
box-shadow: inset 0 5px 5px rgba(0,0,0,0.5);
}
<div class="box-container">
<div class="box-inner"></div>
</div>