如何制作最细的字体

How to make the thinnest font

我在 photoshop 中有一个字体:

当我设置 font-weight: 100 时,结果也是 bold

Font-size:72pxfont-family:"Montseratt"

当我将 font-weight300 更改为 400 时,字体也会发生变化(font-weight: 100, 200, 300 字体相同)。我想这意味着 属性 可以工作,但是我怎样才能使字体比 属性 可以设置的值更细

p.normal {
    font-weight: normal;
}
p.thick {
font-weight: bold;
}
p.thicker {
 font-weight: 900;
}

可能对你有帮助

你可以做到。

you make a typo it's font-family: 'Montserrat', sans-serif; not font-family:"Montseratt"

body {
 font-family: 'Montserrat', sans-serif;
 font-size: 50px;
}

.thin {
  font-weight: 100;
}

.normal {
  font-weight: 400;
}
<link href="https://fonts.googleapis.com/css?family=Montserrat:100,400" rel="stylesheet">

<p class="thin">THIN<p>
<p class="normal">NORMAL</p>