开发者

How to increase or decrease space between two lines in same paragraph?

开发者 https://www.devze.com 2023-03-15 10:20 出处:网络
Question says everything. How to do it with CSS? I have also created a fiddle h开发者_运维技巧ere.Use the line-height!

Question says everything. How to do it with CSS?

I have also created a fiddle h开发者_运维技巧ere.


Use the line-height!

ie:

p {
line-height:20px;
}


Use line-height

.test{
    line-height:40px;
}

http://jsfiddle.net/jasongennaro/jn3Vw/1/

You can set the value to anything: percentage or number, which will be multiplied by the font value or you can use a measurement like px or em.

See more here: http://reference.sitepoint.com/css/line-height


use line-height property

line-height:100% or line-height:200%

0

精彩评论

暂无评论...
验证码 换一张
取 消