Results 1 to 6 of 6

Thread: How to increase text line spacing with css

  1. #1
    Join Date
    May 2007
    Posts
    66
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default How to increase text line spacing with css

    My text line spacing is too close and I need to add a little more space between the lines. My entire website is like this. Is there a way I can do this with css. See link.Thanks

    http://www.ifcnc.com/services.html

  2. #2
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    Corrections to my coding/thoughts welcome.

  3. #3
    Join Date
    Jan 2011
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    If it's for the entire website, then you could implement this into your CSS file:

    Code:
    body {
    line-height:16px;
    }
    Change the 16px to whatever size fits the best. G'luck

  4. #4
    Join Date
    May 2007
    Location
    Boston,ma
    Posts
    2,127
    Thanks
    173
    Thanked 207 Times in 205 Posts

    Default

    You can use pixels on line height? My understanding of line height was that it was a fixed number (1.2) which was then multiplied by the font size of the element.
    Corrections to my coding/thoughts welcome.

  5. #5
    Join Date
    Jan 2011
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by bluewalrus View Post
    You can use pixels on line height? My understanding of line height was that it was a fixed number (1.2) which was then multiplied by the font size of the element.
    Yes you can. In fact, you can test it out here:

    http://www.w3schools.com/css/tryit.a...e-height_pixel

  6. #6
    Join Date
    Jan 2011
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Check your CSS sheet, in this file your enter one more lign with "space-content" and you define the space in px

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •