mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-03-24 23:15:46 -05:00
19 lines
633 B
Markdown
19 lines
633 B
Markdown
---
|
|
title: Sans-serif
|
|
tags:
|
|
- typography
|
|
compartir: true
|
|
updated: 2023-12-15
|
|
---
|
|
|
|
## Definition
|
|
|
|
In typography and lettering, a "sans-serif", "sans serif", "gothic", or simply "sans" letterform is one that does not have extending features called "serifs" at the end of strokes. Sans-serif typefaces tend to have less stroke width variation than serif typefaces. They are often used to convey simplicity and modernity or minimalism.
|
|
|
|
## Font Family in CSS
|
|
|
|
```css
|
|
font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Nimbus Sans L", Roboto,
|
|
Noto, "Segoe UI", Arial, Helvetica, "Helvetica Neue", sans-serif;
|
|
```
|