There are many ways, but to give in to tables is counter-productive. There is no question that CSS has a definite learning curve, you can't master it in days or even weeks.
Looking at your code, you've got a lot of incorrect coding - you cannot put spans around list items. You're also using a lot of spans that simply aren't necessary.
This DL works:
Code:
<dl class="blogs">
<dt class="noClear">4/30/09</dt><dd><a href="http://thehill.com/leading-the-news/ethics-panel-pressured-to-launch-pma-probe-2009-04-30.html" title="Ethics" target="_blank">Ethics panel pressured to launch PMA probe against Murtha</a></dd>
<dt>4/26/09</dt>
<dd><a href="http://www.redstate.com/moe_lane/2009/04/26/best-served-cold-watch-obama-abandoning-murtha/" title="Best Served Cold" target="_blank">Best Served Cold Watch: Obama abandoning Murtha</a></dd>
<dt>4/23/09</dt>
<dd><a href="http://www.redstate.com/brianfaughnan/2009/04/23/your-stimulus-dollars-at-work/" title="Stimulus" target="_blank">
Your Stimulus Dollars at Work</a></dd>
<dt>4/13/09</dt>
<dd><a href="http://michellemalkin.com/2009/04/13/8-million-radar-to-nowhere/" title="Radar to nowwhere" target="_blank">Michelle Malkin: $8 million
radar to nowhere</a></dd>
<dt>4/10/09</dt>
<dd><a href="http://www.digitaljournal.com/article/270778" title="Drained" target="_blank">John Murtha could get 'drained from the swamp'</a></dd>
</dl>
with this CSS:
Code:
dl.blogs dt{
font: 12px bold oblique Arial, Helvetical, sans-serif;
color: #000;
float: left;
line-height: 1.5em;
clear:left;
padding-top: 4px;
width: 10%;
}
dl.blogs dt.noClear{
clear:none;
}
dl.blogs dd{
font-size: .9em;
float: left;
padding-left: 4px;
margin: 0;
width: 80%;
}
The .noClear class on the first DT is necessary because you don't need a clear on the first item, only on successive items.
The widths on the dt and the dd are necessary first of all because they are floated (floats need widths), and second of all, it keeps really long lines wrapping where you want them and not forced down below the dates.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
Last edited by LadynRed; 05-26-2009 at 11:34 PM..
|