In this lesson, you’ll learn:
- How HTML elements fit in a page
- How to create layouts with two or more columns
- How to solve common layout problems
The Nature of HTML Elements
You already know that most HTML elements are block elements that expand to fill the width of their container.
That means that before styling, most HTML elements are stacked on top of each other from the top to bottom of a web page.
But most websites we see have a sidebar or other con...