What is a grid in web design? “Grids help you to achieve effective alignment and consistency with little effort. “Winging it” and relying on your gut does not scale so well. If executed properly, your designs will appear thoughtful, organized, neat and structurally sound.” A Comprehensive Introduction to Grids in Web Design
What is a grid in web design? “Good alignment, like much of design, should almost go unnoticed by your users. Less is more.” A Comprehensive Introduction to Grids in Web Design
How to create a grid? A lightweight Sass tool set A lightweight and flexible Sass grid Scaffold styles, variables and structure for Bourbon projects. Bourbon Neat Bitters
rem vs. em html { font-size: 62.5%; } ul { font-size: 1.8rem /* 18px */; } ul ul { font-size: 1.4rem; /* 14px */ } html { font-size: 62.5%; } ul { font-size: 1.8em /* 18px */; } ul ul { font-size: 1.4em; /* 1.4*18px=25.2px */ }
Vertical Rhythm html { line-height: 18px; } html { line-height: 150%; } html { line-height: 1.5rem; } html { line-height: 1.5; } So and so Good Good Great