
字体家族;字体族科
A native JavaFX font family called Amble
新增了一个名为Amble的JavaFX本地字体家族
A style can have any number of attributes: background color, border color, border width, border style, font color, font family, and font size.
一个样式可以有任意个属性:背景颜色、边框颜色、边框宽度、边框样式、字体颜色、字体集和字体大小。
This sturdy yet playful little font family can be applied to different kinds of graphic design work: Web, print, motion graphics, t-shirts, posters, logotypes.
这是一种强大但又幽默的可爱字体,可以用在各种不同的美术设计中,如网络,印刷,动态美术设计,T恤,海报,标志类。
I set a specific OT Font family for each font with the same value of the field PS font name.
我为每个字体设置了一个特定的“OT字体系列”,字段“PS字体名称”具有相同的值。
You might need to adjust the Size value if you are using a different font family of size.
您可能需要调整大小的值,如果你正在使用一个不同的字体大小家庭。
For this, we’ll use a ****** font family: Arial.
在这个例子中,我们用一种简单的字体:Arial。
Select sans serif as the font family and small as the font size for the unselected font from the drop down lists.
从下拉列表中为未选中的字体选择sansserif字体样式和small字号。
Find a font that's easy on the eyes, and stick to that font family.
找到一个字体的容易对眼睛,并坚持该字体的家庭。
Based on the W3C definition, either the font family name or the generic family name can be used.
根据W3C定义,可以使用字体族名(font familyname)或者一般族名(genericfamilyname)。
Select sans serif as the font family and small as the font size from the drop down list.
从下拉列表中选择sansserif字体样式和small字号。
Returns an array of font family names available on the system.
返回系统可用字体集名称的数组。
Typographically speaking, one has to distinguish between a font family and its multiple font faces, which usually differ in style though come from the same template.
按印刷领域的说法,它必须区别一个字体家族和多种字体外观,后者通常是从同样的模板而来,但是风格不同。
When ****** a font family with a roman and an italic font, the italic font can be constructed in many different ways.
当你制作一个包含“罗马体”和“意大利体”的字体家族时,这个“意大利体”可以用各种不同的方式来构建。
Returns an array of font names available in a particular font family.
在字体集中返回可用的字体名称。
Ubuntu 10.10 is the first version of Ubuntu to come with the Ubuntu font family, and it uses it for many user interface elements by default.
Ubuntu10.10是第一个带有Ubuntu字体族的版本,默认设置下,这一字体将被应用在许多用户界面的元素中。
For every code point that is not supported by the first font family, each subsequent family is checked in turn.
对于每个不受第一个字体系列支持的码位,都会依次检查后续的每个系列。
Select sans serif as the font family and small as the font size for the selected font from the drop down lists.
从下拉列表中为选中的字体选择sansserif字体样式,small字号。
Choose sans serif for the font family, extra small for the font size.
选择sansserif 字体样式和extrasmall字号。
The first thing we did was to define a basic font family and font size.
首先要定义一个基本字体系列和字体大小。
You're able to change several values in a label, including its font, font size, font color, font family, its text, and so on.
您可以在一个标签中更改多个值,包括字体、字体大小、字体颜色和文本等。
The CSS font properties allow you to change the font family, boldness, size, and the style of a text.
CSS字体属性允许你改变字体以及它的粗细,大小和样式。
The fully specified name of the font. This name incorporates both the font family name and the specific style information for the font.
指定的字体全称。这个名称表现出字体集名称和指定的风格的信息。
Arial Unicode MS, which belongs to the Helvetica font family, is specifically used in the stylesheet, and ultimately the font information is embedded in the PDF.
样式表中明确使用了ArialUnicodeMS,它属于Helvetica字体家族,最终,字体信息嵌入在了PDF 中。
When multiple families are identified, the second and subsequent font families serve as fallback families, handling code points that are not supported by the first font family.
当标识了多个系列时,第二个系列与后续的字体系列充当备用系列,并处理第一个字体系列不支持的码位。
Markup authors may have specific requirements for elements in Extensible Application Markup Language (XAML) UI, such as constraints for text length, font family, or font size.
标记作者可能对可扩展应用程序标记语言 (XAML)UI中的元素有特定要求,如对文本长度、字体系列或字号的约束。
在网页排版与设计领域,"font family"(字体系列)指一组具有统一设计风格但包含不同样式变体的字体集合。该术语包含两层核心含义:
字体分类体系
字体系列按照设计特征分为五大通用类别:衬线体(如宋体)、无衬线体(如黑体)宽体(如Consolas)、手写体(如楷体)和装饰体。这种分类源自W3C的CSS规范标准(来源:W3C官方文档)。
技术实现形式
在CSS代码中,font-family
属性用于定义优先级字体栈,例如:
body { font-family: "Helvetica Neue", Arial, sans-serif; }
此写法遵循浏览器"向前兼容"原则,当首选字体不可用时自动降级使用后续字体(来源:MDN Web Docs)。
专业排版中建议同时声明通用类别,例如sans-serif
能确保所有设备至少显示无衬线字体。根据Google Material Design指南,字体系列选择直接影响界面可读性与品牌识别度(来源:Material Design官方指南)。
Font Family 是设计和排版领域的术语,指一组具有相似设计风格但包含不同变体(如粗细、斜体等)的字体集合。以下是详细解释:
font-family
属性:用于指定文本的字体优先级列表。例如:p { font-family: "Helvetica Neue", Arial, sans-serif; }
Helvetica Neue
,若不可用则尝试 Arial
,最后使用通用无衬线字体(sans-serif
)。serif
(衬线,如 Times New Roman)sans-serif
(无衬线,如 Arial)monospace
(等宽,如 Courier New)等。通过合理选择 font family,可以平衡美学、功能性和兼容性。在设计或开发时,建议优先使用系统默认字体或开源字体(如 Google Fonts 库),以确保加载效率。
【别人正在浏览】