MODULE 02 · LESSON 2.2
Choose one-dimensional or two-dimensional layout and prefer intrinsic sizing over device-specific breakpoints.
From mental model to working change
Good work on Flexbox, Grid and Responsive Constraints leaves evidence: a visible behavior, a stable contract or a repeatable operational check. This lesson sits at the browser boundary, where structure, state and user input become observable behavior.
Here, that decision supports a specific checkpoint: Turn the profile into a responsive landing page with reusable design tokens. A reviewable result should include a browser inspection, keyboard test and a recorded expected-versus-actual result rather than a claim that the feature simply works.
Flexbox, Grid and Responsive Constraints workflow
- 1Flex Alignment
- 2Grid Tracks
- 3Minmax
- 4Container Queries
A practical model for flexbox, grid and responsive constraints
Choose one-dimensional or two-dimensional layout and prefer intrinsic sizing over device-specific breakpoints. The useful unit of understanding is the boundary: who owns the decision, which input crosses it, what result is visible and how a failure is reported.
- Flex Alignment: Locate this responsibility in CourseFlow and defend the boundary you chose.
- Grid Tracks: Implement one behavior that another learner can reproduce without reading your mind.
- Minmax: Compare the simplest correct approach with one credible alternative.
- Container Queries: State the assumption this concept relies on and show how the system behaves when it is false.
Follow the data through the example
The sample is intentionally narrow. Its job is to expose flex alignment without hiding the decision behind unrelated setup.
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); gap: 1rem; }Explain what the sample proves, what it does not prove, and which test would increase your confidence in grid tracks.
Ship a reviewable increment
- 1Flex Alignment
Name the caller and the owner of this behavior before changing the implementation.
- 2Grid Tracks
Compare expected and actual output before editing; the difference tells you where to investigate.
- 3Minmax
Keep names tied to the product rule so a reviewer can follow the change without decoding abbreviations.
- 4Container Queries
Add a regression check close to the boundary where this behavior can fail.
Risks to catch during review
- Treating flex alignment as vocabulary instead of defining the behavior it must produce.
- Testing the expected path while ignoring an empty, invalid, repeated or unauthorized case around grid tracks.
- Allowing minmax to cross a boundary without an explicit contract or useful error.
- Changing several layers before capturing the first piece of evidence, which makes the original cause harder to see.
A repeatable investigation sequence
- Reduce the problem to the smallest failing Flexbox, Grid and Responsive Constraints case.
- Capture the actual input and output at the flex alignment boundary.
- Read the first relevant error, request, trace or query rather than the loudest downstream symptom.
- Test one explanation for the failure in grid tracks; avoid changing two variables together.
- Keep a regression check that would expose the same defect if it returned.
Security decision
Keep untrusted content separate from executable markup or script, preserve native browser protections, and validate again when data reaches the server.
Performance decision
Use DevTools to measure the rendered result. Prefer semantic markup and the smallest necessary CSS or JavaScript before adding a dependency.
PRACTICE
Build something you can inspect
Build a card grid that works from 320px to a wide desktop without horizontal scrolling.
Stretch challenge
Ask another person to run the exercise from your README. Fix the first place where their result differs from yours.
Definition of done
- The behavior around flex alignment works with realistic input.
- A failure involving grid tracks is handled clearly and without leaking sensitive detail.
- The implementation remains keyboard-usable when it produces an interface.
- Your evidence directly supports the claim made in the exercise.
- The README records the important trade-off without pretending the solution is universal.
Check your reasoning
When is Grid a clearer choice than Flexbox?
Answer by naming the expected flex alignment behavior, the layer responsible for it and the evidence that would confirm your explanation.
Where would you investigate the first failure?
Start where grid tracks crosses a boundary. Compare the actual input and output there before following downstream symptoms.
What would make this work reviewable?
Show the focused change, repeatable steps, the result of your check and one honest trade-off connected to minmax.
What to carry into the next lesson
- Choose one-dimensional or two-dimensional layout and prefer intrinsic sizing over device-specific breakpoints.
- Keep flex alignment visible at the boundary where it can be tested.
- Use evidence from grid tracks before widening the implementation.
References and related reading
Progress is stored only in this browser.
Share this page
Share this page with the people who will use it next.
Discussion
No comments yet. Add the first useful question or observation.
You must log in to post a comment.