I have a layout featuring three columns, each with unique dimensions:
Left Column: 240px; Middle Column: 360px; Right Column: 360px. The overall layout is contained within a 960px wrapper.
To create this layout, I utilized float properties and inserted some temporary text. I decided to include a 10px right margin and a 1px solid border around all columns, which required me to reduce each column's width by 11px. In order to add a 5px padding, I applied it to the 'p' and 'h' elements rather than the div itself, a technique I learned from Adobe DreamWeaver's built-in 3 column layout.
While this layout functions perfectly for fixed widths, I am uncertain about how to handle margin, border, and padding for a liquid/fluid layout. Since I am using float:left to position the columns, I am unsure how to add these elements without disrupting the overall design. Any advice on implementing these features in a liquid layout would be greatly appreciated!