-Flexbox-L5-
-HTML-
Home
Shop
Map
-CSS-
* { margin: 0; padding: 0; } img { width: 100%; height: 100%; object-fit: cover; vertical-align: bottom; } body { background: url(../images/stripe.png); background-size: 50px; } #wrap { display: flex; flex-wrap: wrap; margin: 30px auto 20px; padding: 10px; width: 700px; background: crimson; } /* nav */ nav { flex-basis: 100%; padding: 10px 0 10px; } ul { display: flex; flex-wrap: nowrap; justify-content: flex-start; border-bottom: solid 2px white; list-style: none; } li { flex-basis: 150px; border: solid 1px white; border-bottom: none; } a { display: block; text-align: center; text-decoration: none; background: rgba(245, 79, 79, 0.7); color: snow; } a:hover { background: rgba(255,255,255,0.5); color: maroon; } /* photo L */ #wrap > p { flex-basis: 700px; margin: 10px 60px; border: solid 4px white; } /* photo S */ #wrap > div { display: flex; flex-wrap: nowrap; justify-content: space-between; align-items: center; } #wrap > div p { flex-basis: 270px; border: solid 4px white; }