[EMAIL PROTECTED] wrote:
having a go trying to help a friend figure out why, in xhtml strict
1.0 the <br /> that are styled in the css style sheet as follows:
*/.sidemenu br {line-height: 3px;/* */./*
*//* [trimmed]
Sharron
A clickable link to this page would help. Otherwise it is a guessing game.
With a simple list /one/ alternative is to assign line-height to the ul.
No <br /> needed. And, either way, using px for line-height is not a
good idea. Try a raw number.
ul {
line-height: 1.75;
}
<ul>
<li><a href="#">stuff</a></li>
<li><a href="#">more stuff</a></li>
<li><a href="#">even more stuff</a></li>
</ul>
If the goal is to have a one of /unique/ space, I suppose you could use:
br.lead {line-height: 3.5;}
<br class="lead" />
Best,
~dL
--
http://chelseacreekstudio.com/
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************