开发者

How to prevent line-height from adding a margin in the top?

Whenever i use a large line-height like 1.6em it always adds a margin in the very top of the text which i don't want.

Example: http://jsfiddle.net/EstpJ/1/

i want the text to be sharply lined with the borders 开发者_如何学Cand not have any kind of top or bottom margin.

How to fix that?


That's exactly what line-height is, it's a manual way to set the height of a line of text for the purposes of wrapping text and such. The actual visible size is determined by the font-size and to a lesser extend by the font-family. The average line-height for normal text/font is around 1.2em. Anything larger than that will cause visible letterboxing, which is exactly what you are describing. Using a smaller value will cause successive lines to overlap each other.

The only way to fix your exact example is introduce more markup to determine line numbers so that you can style the first/last line differently.


You could maybe slightly alter your markup (I prefer wrapping <p> tags around lines of text) and use a negative top margin?


As Matthew said, this is what lineheight does.

You could try to set the line height on an inner div (inside the one with borders), and counteract the top and bottom effect by also setting a negative top and bottom margin. But it's likely that the negative margin won't work in all browsers.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜