The shadow box should be used for off-course, shadow for boxes, and not for the solid color that you use. The result can be achieved using box-shadow also
.header-main {
height: 90px;
background: #009fe3;
}
.container-row {
position: relative;
background-color: #009fe3;
height: 90px;
margin: -10px -15px;
padding: 10px 15px 0;
}
source
share