+ 1
How to increase the spacing between two lines?
5 Respuestas
+ 3
You can set the line-height in percent (%), using pixels value (pix) or by using number value.
+ 2
You can set:
p.small {
line-height: 90%;
}
p.big {
line-height: 200%;
}
You can check it on the w3 page, CSS line-height property.
+ 1
Thanks a lot.
One more thing, Can you please give an example how to use percentage value?
0
p.small {
line-height: 90%;
}
p.big {
line-height: 200%;
}
You can check it on the w3 page, CSS line-height property.
0
use p.class{line-height:value;}