CSS layout help - Multiline address
hey try to use this use this
.address
{
white-space:pre;
text-align:right;
}
You're going to have to add extra elements in there, either <br>
as you suggest, or else something like:
<address>
<div class="street">1234 south east Main St.</div>
<div class="state">Nowhere, Id 45445</div>
<div class="telnum">(555) 555-5555</div>
</address>