- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的CSS样式表似乎工作正常,但无法将字体更改为与iOS 11中使用的System字体紧密匹配的字体。这是我尝试的方法:
body, html {
color: red;
font-family: 'San Francisco';
};
最佳答案
可以通过以下方式检索系统字体系列名称:
UIFont.PreferredBody.FamilyName
.SF UI Text
<font face='.SF UI Text'>This is the iOS System Font: San Francisco</font>
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
body {
font-family: '.SF UI Text';
font-size: 60pt;
}
</style>
</head>
<body>
This is the iOS System Font: San Francisco
</body>
</html>
关于xamarin - 有没有办法可以在WebView中使用Apple San Francisco?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46968283/
我的CSS样式表似乎工作正常,但无法将字体更改为与iOS 11中使用的System字体紧密匹配的字体。这是我尝试的方法: body, html { color: red; font-f
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 2 年前。 Improve
我正在运行 Xcode 8.3 ,但我似乎没有 San Francisco 字体。 我已经从https://developer.apple.com/fonts/下载了它并安装它。当我在 Mac 上打开
新的 San Francisco 字体分为 2 类,显示和文本。当我调用 systemFontOfSize 时,我总是在显示类别中获得字体。有没有办法从文本类别中获取字体? 最佳答案 调用 syste
我想在网站上使用新的 San Francisco 字体。我试过: font: 'San Francisco', Helvetica, Arial, san-serif; 没有用。我试过 this qu
在 Introducing the new system fonts 中,显示了以下屏幕截图。哪个 UIFontDescriptorFeatureSettingsAttribute 用于启用此行为?
在 iOS 9 之前,我们使用 UIFont 的 fontWithName 来引用字体: [UIFont fontWithName:@"HelveticaNeue" size:18] 现在我们要迁移到
我正在尝试更改标签的字体,但它不起作用字体名称:new New san francisco。 将该字体导入项目并添加到 info.plist 中,这是我的代码 labelname.font = [UI
这个问题在这里已经有了答案: How to use roboto thin font in qml (3 个回答) Is it possible to apply a custom font to
我正在开发一个支持 IOS8 及更高版本的应用程序,我想使用 San Francisco 字体。此字体由 Apple 在 iOS 9 中引入。 如何在 iOS 8 设备上使用此字体? 最佳答案 你不能
我有一个带有属性文本 的UITextView,我想在其中为文本的某些部分选择新的“San Francisco”字体。但是,我无法从 Xcode 的字体选择器中找到该字体。 有没有办法在 Interfa
是否可以在针对 iOS 的 CSS 中指定系统字体(显示在 UIWebView 中),并获得与使用 界面生成器: CSS 可以设置 System、System+Weight 或 Text Styles
执行时: let l = UILabel() let f = l.font! let f8 = UIFont(name: f.fontName, size: f.pointSize + 8)! NSL
https://en.m.wikipedia.org/wiki/San_Francisco_(2014_typeface) 我想在我的 Mac OSX 应用程序中使用此字体。不过,我不确定目前是否可能
我是一名优秀的程序员,十分优秀!