Published a short TIL about the very simple 2x2 CSS grid layout I used to display the images in that post https://til.simonwillison.net/css/simple-two-column-grid
Top-level
Published a short TIL about the very simple 2x2 CSS grid layout I used to display the images in that post https://til.simonwillison.net/css/simple-two-column-grid 2 comments
@simon that's a nice pattern, and the simple design looks good. one could add borders and drop shadows too of course! |
@simon the cool kids would use:
grid-template-columns: 1fr 1fr;
Instead of percentages.