By utilizing clever techniques such as margins and outlines, I was able to design the following.
If you'd like to take a look at the live website, it can be found at
https://i.sstatic.net/kl0an.jpg
The CSS code that I used is as follows:
body { margin: auto; max-width: 736px }
span.imgs { display: block; font-size: 0px; margin: 2px }
img { outline: 2px solid white }
img.a { width: 36% }
img.b { width: 64% }
To access the full source code, please visit http://github.com/davidafroivey/davidafroivey.github.io/blob/master/index.html
Is there a way to achieve a similar aesthetic without using outlines? My goal is to incorporate shadows, but outlines tend to obstruct what's behind them.
Often times, when I add padding or margins to a span, it ends up breaking the grid design. This is currently the best solution I have come up with.
Thank you for your help!