- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是我唯一的 CSS
@font-face {
font-family: 'thefont';
src: url('fonts/the-font.otf');
font-style: normal;
}
body {
font-family: 'thefont';
}
当我执行 <button>Hi</button>
时字体最终是 -apple-system
.
如果我真的将字体分配给 button
, 它将使字体出现。
有谁知道为什么它不影响 body 及其内部的一切?
最佳答案
除了下面的信息,为了确保您的自定义字体被考虑到按钮,您需要申请
button {
font-family : inherit;
font-size: 1em;
}
所有按钮元素。
您可以在那里检查他们是如何做到的:
或那里:
http://getbootstrap.com/css/#buttons
还要确保您的字体以几种不同的格式导出,以便所有平台都支持它。
您可以使用 FontSquirrel Generator将您的字体导出为所有格式。
您的 CSS 应该看起来像这样:
@font-face {
font-family: 'thefont';
src: url('the-font.eot'); /* IE9 Compat Modes */
src: url('the-font.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('the-font.woff2') format('woff2'), /* Super Modern Browsers */
url('the-font.woff') format('woff'), /* Pretty Modern Browsers */
url('the-font.ttf') format('truetype'), /* Safari, Android, iOS */
url('the-font.svg#svgFontName') format('svg'); /* Legacy iOS */
}
关于html - 如何更改 <button> 元素的字体系列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40163454/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!