Intermediate CSS lesson 321 Flexbox Layout #442
Unanswered
danarddaniels
asked this question in
Learn (course)
Replies: 1 comment 1 reply
-
|
Hi! Your solution is almost correct - except the way you make your |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a special way to solve the given problem? I was able to create the same layout, but my solution was not accepted.
.container { display: flex; flex-direction:column; gap: 5px; border: 3px dashed; padding: 1rem; height: 80%; } .header, .footer, .sidebar, .main { background: #dcdc27; border: 3px solid; } .main{ flex-grow:1; } .content{ display:flex; gap:5px; height: 100%; }Beta Was this translation helpful? Give feedback.
All reactions