font-weight设置问题
font-weight 在预览模式下只有设置900 和bold才成效,在调试模式都可以成效
在设置font-weight的时候,代码如下
<view class='font_1'>100字体粗细</view><view class='font_4'>400字体粗细</view><view class='font_5'>500字体粗细</view><view class='font_6'>700字体粗细</view><view class='font_9'>900字体粗细</view> |
样式表为
.font_1{ font-weight: 100}.font_5{ font-weight: 500}.font_7{ font-weight: 700}.font_9{ font-weight: 900} |
在编辑器内展示样式如图:
在手机端预览模式展示样式为:
