在本文中,我们将学习如何使用 CSS 在一个声明中设置所有字体属性。这可用于快速设置所需的字体属性,而无需单独指定每个属性。
方法:我们将使用CSS 的 font属性,它是所有字体属性的简写属性。这需要五个值 font-style、font-variant、font-weight、font-size 和 font-family。必须设置 font-size 和 font-family 属性才能使该属性起作用。要使用的所有属性按以下顺序定义:
- font-style:字体的样式。
- font-variant:设置字体是否以小写字母显示。
- font-weight:设置字体的粗细。
- font-size:设置字体的大小。
- font-family:设置字体的家族。
句法:
font: font-style font-variant
font-weight font-size
font-family
例子:
HTML
GeeksforGeeks is my favourite site where
i can gain a lot of knowledge and can
also share my knowledge what I have
gained while learning. We can add
more pharagraphs for content.
输出: