Back to definition list article
HTML
<dl class="event">
<dt>23 March</dt>
<dd>Car club meeting</dd>
<dd>7pm</dd>
<dd>See a wide range of classic cars on display, all in one venue. There will also be balloons, clowns, jumping castles and food stalls. Fun for the whole family.</dd>
<dt>13 June</dt>
<dd>Cake stall</dd>
<dd>12pm</dd>
<dd>Cakes of every type. All proceeds go to the save the Minky Whale fund.</dd>
</dl>
CSS
dl.event
{
margin: 2em 0;
padding: 0;
font-family: georgia, times, serif;
}
.event dt
{
position: relative;
left: 0;
top: 1.1em;
width: 5em;
font-weight: bold;
}
.event dd
{
border-left: 1px solid #000;
margin: 0 0 0 6em;
padding: 0 0 .5em .5em;
}