I have few div and each of them has a shadow, but the shadow of a div always overlays the next div.
here is my code: html:
<div>
Some Text
</div>
<div>
Some Text
</div>
<div>
Some Text
</div>
<div>
Some Text
</div>
<div>
Some Text
</div>
css:
div {
background-color:white;
text-align:center;
box-shadow: 0 0 3px 5px black;
}
fiddle : https://jsfiddle.net/81t4v4a5/
I want to accomplish something like that but without a container : https://jsfiddle.net/kc98heaw/
Is that possible?