fontFamilyNames
Control the layout of font names in font-family declaration.
Possible values:
"consistent": If all font names can be put on a single line, there won’t be line breaks; otherwise, there will be line breaks after each comma."wrap": Font names will be put on one line as possible. Once it exceedsprintWidth, line break will be inserted where the code exceedsprintWidth.
Default value is "consistent".
Example for "consistent"
main {
font-family:
Inter,
Roboto,
"Helvetica Neue",
"Arial Nova",
"Nimbus Sans",
Arial,
sans-serif;
}
Example for "wrap"
main {
font-family:
Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans", Arial,
sans-serif;
}