cssfontsflash-cs5photoshop

How to set font style light?


I m making a web site from photoshop sketch. And I have a text wit

font-family Segoe Ui and font-style: Light. In photoshop It looks like this:enter image description here

So how to set this in css to p element?

p {

}

Solution

  • Use font-weight which takes values like:

    p {
        font-weight: 100; /* 100, 200, 300, ... 900, normal, bold, bolder, lighter */
    }
    

    See the documentation on W3Schools.