odin-flex/02-flex-header
NetMan 7acd8545fe Completed exercise 02 2023-12-29 17:28:53 +01:00
..
solution Initial commit 2023-12-29 17:21:21 +01:00
README.md Initial commit 2023-12-29 17:21:21 +01:00
desired-outcome-narrow.png Initial commit 2023-12-29 17:21:21 +01:00
desired-outcome-wide.png Initial commit 2023-12-29 17:21:21 +01:00
index.html Initial commit 2023-12-29 17:21:21 +01:00
style.css Completed exercise 02 2023-12-29 17:28:53 +01:00

README.md

A Basic Header

Use flexbox rules to create this very common webpage header style. The benefit to using flex here is that everything should be flexible. Check out the two screenshots below to get an idea of how it should scale with your screen. Besides flex rules, you'll also want to add some rules for margin and padding. (Hint: uls have some default margin/padding that you will need to deal with.)

Desired Outcome

narrow: narrow

wide: wide

Self Check

  • There is space between all items and the edge of the header (specific px amount doesn't matter here).
  • Logo is centered vertically and horizontally.
  • list-items are horizontal, and are centered vertically inside the header.
  • left-links and right-links are pushed all the way to the left and right, and stay at the edge of the header when the page is resized.
  • Your solution does not use floats, inline-block, or absolute positioning.