2017-03-12 20:14:14 div css布局中字体变细,让默认粗体变细变正常字显示。
让粗体文字变细,将使用css font-weight实现,字体是否粗体样式实现。
对h1、h2、h3、h4、h5等默认字体加粗样式实现细体(字体变正常)
h1{ font-weight:normal}
h2{ font-weight:normal}
h3{ font-weight:normal}
h4{ font-weight:normal}
h5{ font-weight:normal}
可简写粗体变细CSS:
h1,h2,h3,h4,h5{font-weight:normal}
b{font-weight:normal}
strong{font-weight:normal}
可简写同时设置两个字体粗体标签字体变细CSS:
b,strong{font-weight:normal}
这里不推荐使用font-weight设置具体如400、300、100这样值使文字变细,因为浏览器不同支持兼容性不同。