Introduction A web page is a collection of HTML elements. CSS can control the design of an element, like its color, font, and spacing. CSS can also control where an element sits on a page to create a page layout. For example, the layout to the right has a top navigation bar, a large feature element, a grid of images, and then three pieces of supporting content. What CSS properties are available to move elements around and create page layouts? Here are three common CSS properties. display CSS treats HTML elements like boxes. A box can be "block" or "inline". Block elements display on a new line (e.g., h1 , p , ul , li ). Inline elements display on the same line as their neighboring elements (e.g., img , a ) It's possible to change whether a box is block or inline by using the display property. Try it out Change the display of the li elements from block to inline so t...