Why this matters
Improves accessibility and adaptability across devices.
Avoid fixed pixel heights for containers; prefer min/max constraints or flexible layouts.
Improves accessibility and adaptability across devices.
Side-by-side examples engineers can pattern-match during review.
.card{ height:400px }.card{ min-height:20rem; max-height:80vh }.box{ height:300px }.box{ min-height:50vh }From the same buckets as this rule.