You could put each column in a div for each column or you could use a similar approach as above using a definition list:
Code:
dl {
margin: 0;
padding: 0;
list-style: none; /* remove bullets */
overflow: hidden; /* Clear floats */
}
dt {
margin: 0;
padding: 1em 0 0 0;
font-weight: bold;
float: left;
width: 100%;
}
dd {
margin: 0;
padding: 0;
float: left;
width: 49.9%;
}
Code:
<dl>
<dt>Clerk:</dt>
<dd>Donna Brown</dd>
<dt>Treasurer:</dt>
<dd>Edie Savignac</dd>
<dt>Assistant:</dt>
<dd>Rose Iams</dd>
<dt>Trustees:</dt>
<dd>Robert Mather</dd>
<dd>David Brown</dd>
<dd>Michael Brown</dd>
<dd>Raymond Guillet</dd>
<dd>David A. Brown</dd>
<dt>Deacons:</dt>
<dd>Richard Brown</dd>
<dd>Lawrence Coleman</dd>
<dd>Clarence Neal</dd>
<dd>Seth Owen</dd>
<dd>Sheila Hayes</dd>
<dd>Gerry Leone</dd>
<dd>Rose Iams</dd>
<dd>Edie Savignac</dd>
<dt>S.S. Supt.:</dt>
<dd>Donna Brown</dd>
<dt>Historian:</dt>
<dd>Marilyn Brown</dd>
<dt>Auditors:</dt>
<dd>Rose Mathers</dd>
<dd>Sara Hagel</dd>
<dt>Evangelism & Missions:</dt>
<dd>Debbie Brown</dd>
<dd>Rose Mather</dd>
<dd>Marlene Owen</dd>
<dd>Elizabeth Neal</dd>
</dl>
The headings occupy the full width but the names only occupy half so stack in two columns just like the example above.
Bookmarks