码迷,mamicode.com
首页 > Web开发 > 详细

暴风雨的礼物·Html&Css06:字体

时间:2020-07-02 13:08:46      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:--   through   居中   span   ref   sans   上下   标签   awesome   

Html&Css06:字体

  • html==>结构
  • css ==>表现
  • js ==>行为

1、字体相关的样式

  • color 用来设置字体的颜色

  • font-size 字体的大小

    • em 相当于当前元素的一个font-size
    • rem 相对于根元素的一个font-size
    • px
  • font-family 字体族(字体的格式)

    • serif 衬线字体
    • sans-serif 非衬线字体
    • monospace 等宽字体
  • font-family 可以同时指定多个字体,多个字体间使用,隔开
    字体生效时优先使用第一个,第一个无法使用则使用第二个 以此类推

    Microsoft YaHei,Heiti SC,tahoma,arial,Hiragino Sans GB,"\5B8B\4F53",sans-serif
    

1.1、服务器中的字体

font-face可以将服务器中的字体直接提供给用户去使用
问题:
1.加载速度
2.版权
3.字体格式

  • 代码如下

     @font-face {
                    /* 指定字体的名字 */
                font-family:‘myfont‘ ;
                /* 服务器中字体的路径 */
                src: url(‘./font/ZCOOLKuaiLe-Regular.ttf‘) format("truetype");
            }
    

1.2、图标字体(iconfont)

  • 在网页中经常需要使用一些图标,可以通过图片来引入图标
    但是图片大小本身比较大,并且非常的不灵活
  • 所以在使用图标时,我们还可以将图标直接设置为字体,
    然后通过font-face的形式来对字体进行引入
  • 这样我们就可以通过使用字体的形式来使用图标

1.3、fontawesome 使用步骤

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

直接通过类名来使用图标字体,如下

class="fas fa-bell"
class="fab fa-accessible-icon"

1.4、伪元素和实体

 <link rel="stylesheet" href="./fa/css/all.css">
    <style>
        li{
            list-style: none;
        }

        li::before{
            /* 
                通过伪元素来设置图标字体
                    1.找到要设置图标的元素通过before或after选中
                    2.在content中设置字体的编码
                    3.设置字体的样式
                        fab
                        font-family: ‘Font Awesome 5 Brands‘;

                        fas
                        font-family: ‘Font Awesome 5 Free‘;
                        font-weight: 900; 

            */
            content: ‘\f1b0‘;
            /* font-family: ‘Font Awesome 5 Brands‘; */
            font-family: ‘Font Awesome 5 Free‘;
            font-weight: 900; 
            color: blue;
            margin-right: 10px;
        }
    </style>
</head>
<body>

    <!-- <i class="fas fa-cat"></i> -->

    <ul>
        <li>锄禾日当午</li>
        <li>汗滴禾下土</li>
        <li>谁知盘中餐</li>
        <li>粒粒皆辛苦</li>
    </ul>

    <!-- 

        通过实体来使用图标字体:
            &#x图标的编码;
     -->
    <span class="fas">&#xf0f3;</span>
    
</body>

1.5、阿里的字体库

	<link rel="stylesheet" href="./iconfont/iconfont.css">
    <style>
        i.iconfont{
            font-size: 100px;
        }

        p::before{
            content: ‘\e625‘;
            font-family: ‘iconfont‘;
            font-size: 100px;
        }
    </style>

<body>

    <i class="iconfont">&#xe61c;</i>
    <i class="iconfont">&#xe622;</i>
    <i class="iconfont">&#xe623;</i>

    <i class="iconfont icon-qitalaji"></i>

    <p>Hello</p>
</body>

1.6、行高

 <style>
        div{
            font-size: 50px;

            /* 可以将行高设置为和高度一样的值,使单行文字在一个元素中垂直居中 */
            line-height: 200px;

            /* 
                行高(line height)
                    - 行高指的是文字占有的实际高度
                    - 可以通过line-height来设置行高
                        行高可以直接指定一个大小(px em)
                        也可以直接为行高设置一个整数
                            如果是一个整数的话,行高将会是字体的指定的倍数
                    - 行高经常还用来设置文字的行间距
                        行间距 = 行高 - 字体大小

                字体框
                    - 字体框就是字体存在的格子,设置font-size实际上就是在设置字体框的高度

                行高会在字体框的上下平均分配

            */

            border: 1px red solid;

            /* line-height: 1.33; */
            /* line-height: 1; */
            /* line-height: 10 */
        }
    </style>

1.7、字体的简写属性

 <style>
        div{
            border: 1px red solid;


            /* 
                font 可以设置字体相关的所有属性
                    语法:
                        font: 字体大小/行高 字体族
                        行高 可以省略不写 如果不写使用默认值
            
            */

            /* font-size: 50px;
            font-family: ‘Times New Roman‘, Times, serif; */
            font-weight: bold;
            /* font: 50px/2  微软雅黑, ‘Times New Roman‘, Times, serif; */
            /* font: normal normal 50px/2  微软雅黑, ‘Times New Roman‘, Times, serif; */
            font: bold italic 50px/2  微软雅黑, ‘Times New Roman‘, Times, serif;
            /* font:50px ‘Times New Roman‘, Times, serif;
            line-height: 2; */

            /* font-size: 50px; */

            /* font-weight 字重 字体的加粗 
                可选值:
                    normal 默认值 不加粗
                    bold 加粗
                    100-900 九个级别(没什么用)

                font-style 字体的风格
                    normal 正常的
                    italic 斜体
            */
            /* font-weight: bold; */
            /* font-weight: 500;
            font-style: italic; */



        }
    </style>

1.8、文本的样式

1.8.1、样式一

<style>
        div{
            width: 800px;
            border: 1px red solid;

            /* 
                text-align 文本的水平对齐
                    可选值:
                        left 左侧对齐
                        right 右对齐
                        center 居中对齐
                        justify 两端对齐
            */
            /* text-align: justify; */

            font-size: 50px;
        }

        span{
            font-size: 20px;
            border: 1px blue solid;

                /*
                vertical-align 设置元素垂直对齐的方式
                    可选值:
                        baseline 默认值 基线对齐
                        top 顶部对齐
                        bottom 底部对齐
                        middle 居中对齐
                */
            vertical-align:baseline; 
        }

        p{
            border: 1px red solid;

        }

        img{
            vertical-align: bottom;
        }
    </style>

1.8.2、样式二

<style>
        .box1{
            font-size: 50px;
            font-family: 微软雅黑;


            /* 
                text-decoration 设置文本修饰
                    可选值:
                        none 什么都没有
                        underline 下划线
                        line-through 删除线
                        overline 上划线
            */

            /* text-decoration: overline; */

            /* text-decoration: underline red dotted; */
        }

        .box2{
            width: 200px;
            /* 
                white-space 设置网页如何处理空白
                    可选值:
                        normal 正常
                        nowrap 不换行
                        pre 保留空白

            */
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    </style>

<body>

    <div class="box2">
        Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequatur, minus fugit in perspiciatis reprehenderit consequuntur aspernatur repellat cumque quidem asperiores quaerat placeat, tenetur vel veritatis deserunt numquam. Dolores, cupiditate enim.
    </div>

    <div class="box1">
        今天天气真不错
    </div>
</body>

完整的基础博文出完,本博主将会重新出一份争对常用标签/样式的博文,一起期待吧!

暴风雨的礼物·Html&Css06:字体

标签:--   through   居中   span   ref   sans   上下   标签   awesome   

原文地址:https://www.cnblogs.com/ilbty/p/13224044.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!