piy*_*ria 2 html css fonts ios
我在 Android 和 iOS 应用程序中使用了 HTML 页面的 Helvetica Light 字体。问题是当我给出font-weight: bold标题时,它在 Android 上运行良好,但在 iOS 设备上却不行。
这里是font-face:
@font-face {
font-family: 'HelveticaLight';
src: url('./fonts/helveticalight.eot');
src: url('./fonts/helveticalight.eot') format('embedded-opentype'),
url('./fonts/helveticalight.woff2') format('woff2'),
url('./fonts/helveticalight.woff') format('woff'),
url('./fonts/helveticalight.ttf') format('truetype'),
url('./fonts/helveticalight.svg#helveticalight') format('svg');
}
Run Code Online (Sandbox Code Playgroud)