- CSS 教程
- CSS - 首页
- CSS - 路线图
- CSS - 简介
- CSS - 语法
- CSS - 选择器
- CSS - 包含
- CSS - 计量单位
- CSS - 颜色
- CSS - 背景
- CSS - 字体
- CSS - 文本
- CSS - 图片
- CSS - 链接
- CSS - 表格
- CSS - 边框
- CSS - 块级边框
- CSS - 内联边框
- CSS - 外边距
- CSS - 列表
- CSS - 内边距
- CSS - 光标
- CSS - 轮廓
- CSS - 尺寸
- CSS - 滚动条
- CSS - 内联块
- CSS - 下拉菜单
- CSS - 可见性
- CSS - 溢出
- CSS - 清除浮动
- CSS - 浮动
- CSS - 箭头
- CSS - 尺寸调整
- CSS - 引号
- CSS - 顺序
- CSS - 位置
- CSS - 连字符
- CSS - 悬停
- CSS - 显示
- CSS - 聚焦
- CSS - 缩放
- CSS - 转换
- CSS - 高度
- CSS - 连字符字符
- CSS - 宽度
- CSS - 不透明度
- CSS - Z-Index
- CSS - 底部
- CSS - 导航栏
- CSS - 覆盖层
- CSS - 表单
- CSS - 对齐
- CSS - 图标
- CSS - 图片库
- CSS - 注释
- CSS - 加载器
- CSS - 属性选择器
- CSS - 组合器
- CSS - 根
- CSS - 盒模型
- CSS - 计数器
- CSS - 剪辑
- CSS - 书写模式
- CSS - Unicode-bidi
- CSS - min-content
- CSS - 全部
- CSS - 内嵌
- CSS - 隔离
- CSS - 滚动溢出
- CSS - Justify Items
- CSS - Justify Self
- CSS - 制表符大小
- CSS - 指针事件
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - 最大块尺寸
- CSS - 最小块尺寸
- CSS - 混合模式
- CSS - 最大内联尺寸
- CSS - 最小内联尺寸
- CSS - 偏移量
- CSS - 重音颜色
- CSS - 用户选择
- CSS 高级
- CSS - 网格
- CSS - 网格布局
- CSS - Flexbox
- CSS - 可见性
- CSS - 定位
- CSS - 图层
- CSS - 伪类
- CSS - 伪元素
- CSS - @规则
- CSS - 文本效果
- CSS - 分页媒体
- CSS - 打印
- CSS - 布局
- CSS - 验证
- CSS - 图片精灵
- CSS - 重要
- CSS - 数据类型
- CSS3 教程
- CSS3 - 教程
- CSS - 圆角
- CSS - 边框图片
- CSS - 多背景
- CSS - 颜色
- CSS - 渐变
- CSS - 盒阴影
- CSS - 盒装饰中断
- CSS - 光标颜色
- CSS - 文本阴影
- CSS - 文本
- CSS - 2d 转换
- CSS - 3d 转换
- CSS - 过渡
- CSS - 动画
- CSS - 多列
- CSS - 盒尺寸
- CSS - 工具提示
- CSS - 按钮
- CSS - 分页
- CSS - 变量
- CSS - 媒体查询
- CSS - 函数
- CSS - 数学函数
- CSS - 遮罩
- CSS - 形状
- CSS - 样式图片
- CSS - 特异性
- CSS - 自定义属性
- CSS 响应式
- CSS RWD - 简介
- CSS RWD - 视口
- CSS RWD - 网格视图
- CSS RWD - 媒体查询
- CSS RWD - 图片
- CSS RWD - 视频
- CSS RWD - 框架
- CSS 工具
- CSS - PX 到 EM 转换器
- CSS - 颜色选择器和动画
- CSS 资源
- CSS - 有用资源
- CSS - 讨论
CSS - font 属性
CSS font 是一个简写属性,用于一次设置多个字体属性,例如 font-size、font-variant、font-weight、font-size、font-family 等。font-size 和 font-family 是必需的参数。如果某些值缺失,则使用默认值。
语法
font: font-style font-variant font-weight font-size/line-height font-family | caption | icon | menu | message-box | small-caption | status-bar | initial | inherit;
属性值
值 | 描述 |
---|---|
font-style | 它指定字体样式。默认值为 normal。 |
font-variant | 它指定字体变体。默认值为 normal。 |
font-weight | 它指定字体粗细。默认值为 normal。 |
font-size | 它指定字体大小和行高。默认值为 normal。 |
font-family | 它指定字体系列。默认值取决于浏览器。 |
caption | 它使用带标题控件(如按钮、下拉菜单等)使用的字体。 |
icon | 它使用图标标签使用的字体。 |
menu | 它使用下拉菜单使用的字体。 |
message-box | 它使用对话框使用的字体。 |
small-caption | 这是标题字体的较小版本。 |
status-bar | 它使用状态栏使用的字体。 |
initial | 这将属性设置为其默认值。 |
inherit | 这从父元素继承属性。 |
CSS 字体属性示例
以下示例说明了font 属性及其各个组成部分。
设置文本的字体样式
要设置文本的字体样式,我们使用font 属性的font-style 组件。可以为 font-style 组件赋予不同的值,相应地文本将被修改。在以下示例中,italic 值已与 font 属性的 font-style 组件一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font-style: italic; } </style> </head> <body> <h2>CSS font property</h2> <p>This text is without the font style property.</p> <div id="font"> This text is shows the font-style property. </div> </body> </html>
设置文本的字体变体
要设置文本的字体变体,它指定文本是否应以小写字体显示,我们使用font 属性的font-variant 组件。在以下示例中,small-caps 值已与 font 属性的 font-variant 组件一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font-variant: small-caps; } </style> </head> <body> <h2>CSS font property</h2> <p>This text is without the font variant property.</p> <div id="font"> This text shows the font variant property. </div> </body> </html>
设置文本的字体粗细
要设置文本的字体粗细,它指定文本应有多粗,我们使用font 属性的font-weight 组件。可以为 font-weight 组件赋予不同的值,相应地文本将被修改。在以下示例中,bolder 值已与 font 属性的 font-weight 组件一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font-weight: bolder; } </style> </head> <body> <h2>CSS font property</h2> <p>This text is without the font weight property.</p> <div id="font"> This text shows the font weight property. </div> </body> </html>
设置文本的字体大小
要设置文本的字体大小,它指定文本应有多大,我们使用font 属性的font-size 组件。可以为 font-size 组件赋予不同的值,相应地文本将被修改。在以下示例中,larger 值已与 font 属性的 font-size 组件一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font-size: larger; } </style> </head> <body> <h2>CSS font property</h2> <p>This text is without the font size property.</p> <div id="font"> This text shows the font size property. </div> </body> </html>
设置文本的字体系列
要设置文本的字体系列,它指定文本的排版,我们使用font 属性的font-family 组件。可以为 font-family 组件赋予不同的值,相应地文本将被修改。在以下示例中,Impact 值已与 font 属性的 font-family 组件一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font-family: Impact; } </style> </head> <body> <h2>CSS font property</h2> <p>This text is without the font family property.</p> <div id="font"> This text shows the font family property. </div> </body> </html>
一次设置所有值
要一次设置所有值(font-style、font-variant、font-weight、font-size 和 font-family),我们使用font 属性。在以下示例中,字体样式为 italic,字体变体为 small-caps,字体粗细为 bold,字体大小为 30px,字体系列为 Times New Romans。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:italic small-caps bold 30px Times New Romans; } </style> </head> <body> <h2>CSS font property</h2> <p>This is normal text.</p> <div id="font"> This text shows the font property. </div> </body> </html>
设置标题的字体
要设置按钮、下拉菜单等带标题控件的字体,我们使用font 属性的 caption 值。在以下示例中,caption 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font: caption; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> The caption value is used for captions. </div> </body> </html>
设置图标标签的字体
要设置图标标签使用的字体,我们使用font 属性的 icon 值。在以下示例中,icon 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:icon; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> This icon value is used for icon labels. </div> </body> </html>
设置下拉菜单的字体
要设置下拉菜单使用的字体,我们使用font 属性的 menu 值。在以下示例中,menu 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:menu; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> The menu value is used for dropdown menus. </div> </body> </html>
设置消息框的字体
要设置消息框的字体,我们使用font 属性的 message-box 值。在以下示例中,message-box 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:message-box; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> The message box is value is used for dialog boxes. </div> </body> </html>
设置标题的小字体
要设置标题的小字体,我们使用font 属性的 small-caption 值。在以下示例中,small-caption 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:small-caption; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> The small-caption value is a smaller version of caption value. </div> </body> </html>
设置状态栏的字体
要设置状态栏的字体,我们使用font 属性的 status-bar 值。在以下示例中,status-bar 值已与 font 属性一起使用。
示例
<!DOCTYPE html> <html> <head> <style> #font { font:status-bar; } </style> </head> <body> <h2>CSS font property</h2> <div id="font"> The status-bar value is used for status bars. </div> </body> </html>
支持的浏览器
属性 | |||||
---|---|---|---|---|---|
font | 1.0 | 4.0 | 1.0 | 1.0 | 3.5 |