What is a breakpoint in responsive Web design?
It’s when the contents start to break and need to use media query to change the layout or design.
What is the advantage of using a percentage (e.g. 50%) width instead of a fixed (e.g. px) width for a “column” class in a responsive layout?
percentage is a responsive unit, the width will adjust automatically based on its parent width.
If you introduce CSS rules for a smaller min-width after the styles for a larger min-width in your style sheet, the CSS rules for the smaller min-width will “win”. Why is that?
because css rules will override the ones before it.