reading-notes

HOME

Duckett HTML book: Chapter 15: “Layout” (pp.358-404)

Building Blocks

Control Positions of Elements

z-index can be used to keep elements from overlapping

get side by side elements using float

keep elements clear/with space between one another using float-left,float-right etc

multi-column layout

use width, float and margin

Fixed Width Layouts and Liquid Layouts

grid layout examples on pages 389-390

stay organized by using separate style sheets to group similar types of styling using @import or a link. the last rule will take precedence

HOME