fem-adv-css-layout
fem-adv-css-layout copied to clipboard
Frontend Masters course, "Advanced CSS Layout"
Exercise 2 and further exercises in each index.html
There are mistakes in the pdf on page 7. before: .col-2-7{ width:calc(100%/2* 7); } .col-3-7{ width:calc(100%/3*7); } after(correct): .col-2-7{ width:calc(100% * 2 / 7); } .col-3-7{ width:calc(100% * 3 /...
The media queries are missing the targeting of :root, which is where the variables are scoped at the top of the CSS file. In the videos (2nd video, "Custom Properties...
Although the demo code does include the transition effect for the sidebar menu, it doesn't get used in a way that animates the menu when it appears or disappears.
Part 1