Create Three Columns On A Page
Example: Create three columns within the body of a journal entry or HTML page.
Note: You can add, edit or omit style declarations to your preference. Column widths including all margins set should be sized to fit within the page body width so that they align correctly.
CSS:
#column1 {color: #000; background: #fff; width: 200px; margin: 20px; padding: 10px; border: 1px solid #ccc; float: left;}
#column2 {color: #000; background: #fff; width: 200px; margin: 20px; padding: 10px; border: 1px solid #ccc; float: left;}
#column3 {color: #000; background: #fff; width: 200px; margin: 20px; padding: 10px; border: 1px solid #ccc; float: left;}
HTML:
<div id="column1"><p>Your content here.</p></div>
<div id="column2"><p>Your content here.</p></div>
<div id="column3"><p>Your content here.</p></div>



