I'm pretty new to all this but used to use Quark.
Is there a way to add space between lines (not paragraphs) in dreamweaver 8 or does anyone know the code.
Many thanks in advance
for example, to specify a line-height for paragraphs:
p{
line-height: 1.2em;
}
1em = 16px -you can also use px or % units.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday" Carolina Corvette Club
Thats right, if you need it for an element in specific, you can create a class and assign it to that specific element. you can also do it on the fly to the element that needs it for example:
<td style="line-height:10px" (or any required size)>
THis is beeing formatted with a 10px height difference between each line... . . .. blahyh bala</td>