Just a quick question, I'm wondering how you would approach creating this type of effect using CSS?
https://i.sstatic.net/rYCJn.png
The concept revolves around building the grid using bootstrap. As the screen size decreases, the grid transitions to 2 columns and then to 1 on mobile devices. When there are 2 columns, only the middle and bottom lines should remain visible.
Do you think this layout is achievable with CSS?
.icon-grid{
-webkit-filter: drop-shadow(10px 8px 30px #222);
filter: drop-shadow(1px 8px 10px #222);
padding: 75px;
border-right: black 2px solid;
border-bottom: black 2px solid;
}
<div style="color: black" class="row">
<div class="col-md-3 col-sm-6 col-xs-12"><p> <img alt="" class="icon-grid" src="https://cdn-accept-www.enfocus.com/sites/combell-accept-www.enfocus.com/files/media/product-pages/pitstop-pro/low-resolution.png"></p></div>
<div class="col-md-3 col-sm-6 col-xs-12"><p> <img alt="" class="icon-grid" src="https://cdn-accept-www.enfocus.com/sites/combell-accept-www.enfocus.com/files/media/product-pages/pitstop-pro/low-resolution.png"></p></div>
<div class="col-md-3 col-sm-6 col-xs-12"><p> <img alt="" class="icon-grid" src="https://cdn-accept-www.enfocus.com/sites/combell-accept-www.enfocus.com/files/media/product-pages/pitstop-pro/low-resolution.png"></p></div>
<div class="col-md-3 col-sm-6 col-xs-12"><p> <img alt="" class="icon-grid" src="https://cdn-accept-www.enfocus.com/sites/combell-accept-www.enfocus.com/files/media/product-pages/pitstop-pro/low-resolution.png"></p></div>
</div>