half space

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Another question I'm afraid! I am using Arial (not Arial serif) and I am
trying to line two phrases up on different lines with a - in between words
which I want lined up on each line . I seem to need a half space can you do
this using this font and on frontpage?
SWorry for the silly question but I just can't line it all up.

regards,
JacquieCC
 
Sure - you can do it with CSS by managing the top/bottom margins on the
respective <p> tags.

For example -

p.special { margin-top:5px; margin-bottom:5px; }

and then -

<p class="special">line1</p>
<p class="special">line2</p>

(adjust that 5px margin value to suit)
 
Back
Top