视觉艺术

CSS字体(font)

2020-02-16  本文已影响0人  Syaroing阿樱

字体

字体的颜色

color 用来设置字体颜色

字体的大小

字体的格式

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      @font-face {
        /* 指定字体的名字 */
        font-family: "myfont";
        /* 服务器中字体的路径 */
        src: url("./font/ZCOOLKuaiLe-Regular.ttf") format("truetype");
      }

      p {
        color: blue;
        font-size: 40px;
        font-family: myfont;
      }
    </style>
  </head>
  <body>
    <p>
      今天天气真不错,Hello Hello How are you!
    </p>
  </body>
</html>

font-face

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <style>
      @font-face {
        /* 指定字体的名字 */
        font-family: "myfont";
        /* 服务器中字体的路径 */
        src: url("./font/ZCOOLKuaiLe-Regular.ttf") format("truetype");
      }
      p {
        color: blue;
        font-size: 40px;
        font-family: myfont;
      }
    </style>
  </head>
  <body>
    <p>
      今天天气真不错,Hello Hello How are you!
    </p>
  </body>
</html>

图标字体

图标字体(iconfont)简介

使用图标字体的方法

fontawesome

  1. 下载 https://fontawesome.com/
  2. 解压
  3. 将css和webfonts移动到项目中
  4. 将all.css引入到网页中
  5. 使用图标字体
    • 直接通过类名来使用图标字体

      class="fas fa-bell"

      class="fab fa-accessible-icon"

阿里巴巴矢量图标库

详情见阿里的介绍

行高

行高(line height)简介

字体框

行高在布局中的应用

可以将行高设置为和高度一样的值,使单行文字在一个元素中垂直居中

字体的粗细

字体风格

字体的简写属性

font 可以设置字体相关的所有属性

语法:

font: 字体大小 字体颜色 字体粗细 字体风格 字体大小/行高 字体族

行高可以省略不写 如果不写使用默认值

文本的样式

text-align 文本的水平对齐

可选值:

vertical-align 设置元素垂直对齐的方式

可选值:

text-decoration 设置文本修饰

可选值:

white-space 设置网页如何处理空白

可选值:

上一篇 下一篇

猜你喜欢

热点阅读