Day 317
Working with Wes Boss on CSS GRID today... #CodingPhase #TheCodingWay #365CodingPhaseChallenge ********** <style> .container { display: grid; grid-gap: 20px; /* Make the grid 10 columns wide, every other taking up twice the free space */ grid-template-columns: repeat(5, 1fr 2fr); /* Make the grid have 10 explicit rows, 50px high each */ grid-template-rows: repeat(10, 50px); } /* With Item 1, start at col 3 and go until 5 */ .item1 { grid-column: 3 / 5; } /* With Item 2, start at col 5 and go until the end */ .item2 { grid-column: 5 / -1; } /* Make Item 5 double spa...