Originally posted by ajdegans
how would you write that code then bubblenut?
curiousπ
Well, this would do much the same. You don't even really need to set the font attributes for the list specifically as it's the same font used almost everywhere else on the page so a simple body { font: 2px Verdana; color: #333399; } would do for the whole page. Also it would be better to put the css in an external file so that it can be cached and save on badwidth.
<style type="text/css">
ul.attlist {
font:2px Verdana;
color:#333399;
}
</style>
<tr>
<ul class="attlist">
<li>Q-Link</li>
<li>Receives Digital Terrestrial Signal</li>
<li>Integrated Freeview Digital Tuner</li>
<li>50hz</li>
<li>Nicam Stereo</li>
<li>Quintrix Flatscreen</li>
<li>66cm Screen Size</li>
<li>Open Cabinet Supplied</li>
</ul>
</tr>