使用 CSS 设置关键字的字体大小

ID:13650 / 打印

css font-size 属性可以使用绝对和相对关键字来设置。这会根据需要缩放文本。

语法

CSS font-size 属性的语法如下 -

Selector {    font-size: /*value*/ }

下表列出了 CSS 中使用的标准关键字 -

Sr.NoValue &描述
1

设置字体大小到中等尺寸。这是默认值

2xx-small

立即学习“前端免费学习笔记(深入)”;

集将字体大小设置为 xx-small 尺寸

3x-small< /p>

将字体大小设置为特别小

4小< /strong>

将字体大小设置为较小尺寸

5large

将字体大小设置为大尺寸

6x-large

将字体大小设置为超大尺寸

7xx-large

将字体大小设置为xx-large尺寸

8较小

将字体大小设置为小于父元素

9更大

将字体大小设置为比父元素更大的大小

以下示例说明了如何使用关键字设置 CSS font-size 属性。

示例

 现场演示

<!DOCTYPE html> <html> <head> <style> h1{    font-size: larger; } #demo {    font-size: medium;    text-align: center;    background-color: floralwhite; } p {    font-size: xx-large; } </style> </head> <body> <h1>Demo Heading</h1> <p id="demo">This is demo text.</p> <p>This is another demo text.</p> </body> </html>

输出

这给出了以下输出 -

使用 CSS 设置关键字的字体大小

示例

 现场演示

<!DOCTYPE html> <html> <head> <style> div {    margin: auto;    padding: 5px;    width: 30%;    border: 1px solid;    border-radius: 29%;    text-align: center;    font-size: xx-small; } p {    font-size: xx-large; } </style> </head> <body> <div> <div>One</div> <p>Two</p> </div> </body> </html>

输出

这给出了以下输出 -

使用 CSS 设置关键字的字体大小

上一篇: 如何将CSS样式应用到HTML中具有相同类名的不同元素?
下一篇: 如何使用 CSS Viewport 单位来实现根据屏幕尺寸调整元素位置的技巧

作者:admin @ 24资源网   2024-10-18

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。