odin-default-css-exercises/grid/03-grid-layout-3
Daniel Murphy 5dbb8ff5a4 Update README hints 2022-01-12 19:37:30 -05:00
..
solution Simplify solution 2022-01-12 19:37:15 -05:00
README.md Update README hints 2022-01-12 19:37:30 -05:00
desired-outcome-stretched.png Add stretched image with link to README along with full README notes 2022-01-10 17:24:00 -05:00
desired-outcome.png Add desired outcome image to folder with link in README 2022-01-10 10:30:34 -05:00
index.html Add initial index.html 2022-01-10 17:28:50 -05:00
style.css Update exercise 3 CSS 2022-01-12 17:18:49 -05:00

README.md

Holy Grail Mockup with Grid

Now that you've made your Holy Grail layout responsive, we are going to have some fun making it a bit more complicated and adding some features. You might find this to be a bit more challenging than you expected. You might even be tempted to use Flexbox. But for the sake of this practice assignment, try and see if you can figure out how to recreate this entire mockup using only Grid. Feel free to add in your own dummy content or styling too!

Hints

  • Take the layout one section at a time
  • You don't need to add or change anything to the HTML, but it will be helpful to look through the parent and child relationships between elements
  • You only need to add to the current CSS selectors
  • Just like with Flexbox, you can easily center an item by making it into a grid
  • Don't worry about the placeholder image element stretching when resizing the browser window. This will be covered in the Responsive lessons

Desired Outcome

desired outcome

If you use the tools in the Advanced Grid Properties lesson you should be able to get your article cards to automatically fit as the browser window is adjusted:

desired outcome stretched

Self Check

  • The container element has two columns
  • The container's second column is 4 times larger than the first column
  • The container element has a gap of 4px
  • The header element has two columns
  • The header element contains another grid that has two columns
  • The ul inside the menu element contains another grid
  • The ul inside the nav element contains another grid
  • The sidebar element has a gap of 50px
  • The text elements in the sidebar are centered with grid
  • The article element should set grid columns using repeat along with the auto-fit and minmax properties
  • The article columns should have a minimum value of 250px and a maximum of 1fr unit
  • The article element has a gap of 15px
  • The card elements inside the article container have a height of 200px
  • The header and footer span across both columns
  • The sidebar only spans across the first column
  • The nav and article elements only span across the second column