• 【玩转CSS】这些高级技巧,你都会吗


    🔥一个人走得远了,就会忘记自己为了什么而出发,希望你可以不忘初心,不要随波逐流,一直走下去🎶
    🦋 欢迎关注🖱点赞👍收藏🌟留言🐾
    🦄 本文由 程序喵正在路上 原创,CSDN首发!
    💖 系列专栏:HTML5+CSS3+移动端前端
    🌠 首发时间:2022年8月16日
    ✅ 如果觉得博主的文章还不错的话,希望小伙伴们三连支持一下哦

    学习目标

    • 能够使用精灵图
    • 能够使用字体图标
    • 能够写出 CSS 三角
    • 能够写出常见的 CSS 用户界面样式
    • 能够说出常见的布局技巧

    精灵图

    1. 为什么需要精灵图?

    客户端要访问一个网页时,浏览器会向服务器发送请求,服务器接收到请求后,会返回请求页面给客户端

    一个网页中往往会应用很多小的背景图像作为修饰,当网页中的图像过多时,服务器就会频繁地接收和发送请求图片,造成服务器请求压力过大,这将大大降低页面的加载速度

    因此,为了有效地减少服务器接收和发送请求的次数,提高页面的加载速度,出现了 CSS 精灵技术(也称为 CSS SpritesCSS 雪碧)

    核心原理:将网页中的一些小背景图像整合到一张大图中,这样服务器只需要一次请求就可以了

    2. 精灵图的使用

    使用精灵图核心:

    1. 精灵技术主要针对于背景图片使用,就是把多个小背景图片整合到一张大图片中
    2. 这个大图片也称为 sprites 精灵图或者雪碧图
    3. 移动背景图片位置,此时可以使用 background-position
    4. 移动的距离就是这个目标图片的 xy 坐标,注意网页中的坐标有所不同
    5. 因为一般情况下都是往上往左移动,所以数值是负值
    6. 使用精灵图的时候需要精确测量,每个小背景图片的大小和位置

    在王者荣耀的官网,我们可以找到这样的一张精灵图

    在这里插入图片描述

    怎么显示这张精灵图中的特定部分呢

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>精灵图的使用title>
        <style>
            .box1 {
                width: 60px;
                height: 60px;
                margin: 100px auto;
                background: url(images/index.png) no-repeat -182px 0;
            }
    
            .box2 {
                width: 27px;
                height: 25px;
                margin: 200px;
                background: url(images/index.png) no-repeat -155px -106px;
            }
        style>
    head>
    
    <body>
        <div class="box1">div>
        <div class="box2">div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    运行结果:

    在这里插入图片描述

    3. 精灵图应用案例

    素材在此

    在这里插入图片描述

    代码实现:

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>利用精灵图拼出自己的名字title>
        <style>
            span {
                display: inline-block;
                background: url(images/abcd.jpg) no-repeat;
            }
    
            .c {
                width: 109px;
                height: 110px;
                background-position: -237px -8px;
            }
    
            .z {
                width: 113px;
                height: 112px;
                background-position: -479px -557px;
            }
    
            .r {
                width: 110px;
                height: 109px;
                background-position: -139px -415px;
            }
        style>
    head>
    
    <body>
        <span class="c">span>
        <span class="z">span>
        <span class="r">span>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    运行结果:

    在这里插入图片描述

    怎么样,快去试试看吧

    字体图标

    1. 字体图标的产生

    下图中圈起来的就是字体图标,不是图片哦

    在这里插入图片描述

    字体图标的使用场景:主要用于显示网页中通用、常用的一些小图标

    精灵图是有很多优点的,但是缺点也很明显

    1. 图片文件占用空间还是比较大的
    2. 图片本身放大和缩小会失真
    3. 一旦图片制作完毕想要更换非常复杂

    于是,一种技术出现了,就是字体图标 iconfont

    字体图标可以为前端工程师提供一种方便高效的图标使用方式,展示的是图标,本质属于字体

    2. 字体图标的优点

    • 轻量级:一个字体图标要比一系列的图像要小,一旦字体加载了,图标就会马上渲染出来,减少了服务器请求
    • 灵活性:本质其实是文字,可以很随意地改变颜色、产生阴影、透明效果、旋转等等
    • 兼容性:几乎支持所有的浏览器,请放心使用

    注意:字体图标不能替代精灵技术,只是对工作中图标部分技术的提升和优化

    总结:

    1. 如果遇到一些结构和样式比较简单的小图标,就用字体图标
    2. 如果遇到一些结构和样式复杂一点的小图片,就用精灵图

    3. 下载字体图标

    字体图标是一些网页常见的小图标,我们直接从网上下载即可,使用可以分为:

    1. 字体图标的下载
    2. 字体图标的引入(引入到我们 html 页面中)
    3. 字体图标的追加(以后添加新的小图标)

    推荐的下载网站:

    • icomoon 字库
      IcoMoon 成立于 2011 年,推出了第一个自定义图标字体生成器,它允许用户选择所需要的图标,使它们呈一字型。该字库内容种类繁多,非常全面,唯一的遗憾是国外服务器,打开网速较慢
    • iconfont 字库
      这个是阿里巴巴 M2UX 的一个 iconfont 字体图标字库,包含了淘宝图标库和阿里巴巴图标库,可以使用 AI 制作图表上传生成,重点是 —— 免费

    icomoon 字库 来说,基本操作如下

    在这里插入图片描述

    在这里插入图片描述

    4. 引入字体图标

    下载完毕之后,注意原先的文件不要删,后面会用

    • 把下载包里面的 fonts 文件夹放入页面根目录下
      在这里插入图片描述
    • CSS 样式中全局声明字体:简单理解为将这些字体文件通过 css 引入到我们页面中
      一定要注意文件路径的问题

    在这里插入图片描述
    我们用下面这一系列代码来声明字体,这段代码也可以在 style.css 中找到

    @font-face {
      font-family: 'icomoon';
      src:  url('fonts/icomoon.eot?q42srk');
      src:  url('fonts/icomoon.eot?q42srk#iefix') format('embedded-opentype'),
        url('fonts/icomoon.ttf?q42srk') format('truetype'),
        url('fonts/icomoon.woff?q42srk') format('woff'),
        url('fonts/icomoon.svg?q42srk#icomoon') format('svg');
      font-weight: normal;
      font-style: normal;
      font-display: block;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    打开 demo.html 我们可以复制下载的图标

    在这里插入图片描述

    在这里插入图片描述

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>字体图标的使用title>
        <style>
            /* 字体声明 */
            @font-face {
                font-family: 'icomoon';
                src: url('fonts/icomoon.eot?q42srk');
                src: url('fonts/icomoon.eot?q42srk#iefix') format('embedded-opentype'),
                    url('fonts/icomoon.ttf?q42srk') format('truetype'),
                    url('fonts/icomoon.woff?q42srk') format('woff'),
                    url('fonts/icomoon.svg?q42srk#icomoon') format('svg');
                font-weight: normal;
                font-style: normal;
                font-display: block;
            }
    
            span {
                /* 指定字体,和字体声明中一致 */
                font-family: 'icomoon';
                font-size: 100px;
                color: cyan;
            }
        style>
    head>
    
    <body>
        <span>span>
        <span>span>
        <span>span>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38

    在这里插入图片描述

    5. 字体图标的追加

    如果工作中,原来的字体图标不够用了,我们需要添加新的字体图标到原来的字体文件

    把压缩包里面的 selection.json 重新上传,然后选中自己想要新的图标,重新下载压缩包,并替换原来的文件即可

    在这里插入图片描述

    CSS 三角

    1. CSS三角制作

    网页中常见一些三角形,使用 CSS 直接画出来就可以,不必做成图片或者字体图标

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>CSS三角制作title>
        <style>
            .box1 {
                width: 0;
                height: 0;
                border: 10px solid;
                border-top-color: cyan;
                border-right-color: red;
                border-bottom-color: green;
                border-left-color: blue;
            }
    
            .box2 {
                width: 0;
                height: 0;
                border: 10px solid transparent;
                /* 要显示的一边改变颜色,其他边透明  */
                border-bottom-color: cyan;
            }
        style>
    head>
    
    <body>
        <div class="box1">div>
        <div class="box2">div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    在这里插入图片描述

    2. CSS三角应用-京东效果

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>CSS三角应用title>
        <style>
            .jd {
                position: relative;
                width: 120px;
                height: 249px;
                background-color: pink;
            }
    
            .jd span {
                position: absolute;
                right: 15px;
                top: -10px;
                width: 0;
                height: 0;
                /* 兼容低版本浏览器 */
                line-height: 0;
                font-size: 0;
                border: 5px solid transparent;
                border-bottom-color: pink;
            }
        style>
    head>
    
    <body>
        <div class="jd">
            <span>span>
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38

    在这里插入图片描述

    CSS 用户界面样式

    1. 什么是界面样式

    所谓的界面样式,就是更改一些用户操作样式,以便提供更好的用户体验

    • 更改用户的鼠标样式
    • 表单轮廓
    • 防止表单域拖拽

    2. 更换用户鼠标样式

    li { cursor: pointer; }
    
    • 1

    设置或检索在对象上移动的鼠标指针采用何种系统预定义的光标形状

    属性值描述
    default小白,默认
    pointer小手
    move移动
    text文本
    not-allowed禁止
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>鼠标样式title>
    head>
    
    <body>
        <ul>
            <li style="cursor: default;">我是鼠标默认样式li>
            <li style="cursor: pointer;">我是鼠标小手样式li>
            <li style="cursor: move;">我是鼠标移动样式li>
            <li style="cursor: text;">我是鼠标文本样式li>
            <li style="cursor: not-allowed;">我是鼠标禁止样式li>
        ul>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    3. 表单轮廓线

    给表单添加 outline: 0; 或者 outline: none; 样式之后,就可以去掉默认的蓝色边框

    4. 防止表单域拖拽

    实际开发中,我们文本域右下角是不可以拖拽的

    给文本域添加 resize: none; 样式之后,就可以防止被拖拽

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>去掉表单轮廓线和防止文本域拖拽title>
        <style>
            input,
            textarea {
                outline: none;
            }
    
            textarea {
                resize: none;
            }
        style>
    head>
    
    <body>
        <input type="text">
        <textarea name="" id="" cols="30" rows="10">textarea>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    在这里插入图片描述

    vertical-align 属性应用

    CSSvertical-align 属性使用场景:经常用于设置图片或者表单(行内块元素)和文字垂直对齐

    功能:用于设置一个元素的垂直对齐方式,但是它只针对于行内元素或者行内块元素有效

    语法:

    vertical-align: baseline | top | middle | bottom 
    
    • 1
    描述
    baseline默认,元素放置在父元素的基线上
    top把元素的顶端于行中最高元素的顶端对齐
    middle把此元素放置在父元素的中部
    bottom把元素的顶端与行中最低的元素的顶端对齐
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>vertical-aligntitle>
        <style>
            img {
                vertical-align: middle;
            }
        style>
    head>
    
    <body>
        <img src="images/math.png" alt="">一生之敌
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20

    在这里插入图片描述

    1. 图片、表单和文字对齐

    图片、表单都属于行内块元素,默认的 vertical-align 是基线对齐

    在这里插入图片描述

    此时可以给图片、表单这些行内块元素的 vertical-align 属性设置为 middle 就可以让文字和图片垂直居中对齐了

    在这里插入图片描述

    2. 解决图片底部默认白色间隙问题

    bug:图片底侧会有一个空白间隙,原因是行内块元素会和文字的基线对齐

    主要解决方法有两种:

    1. 给图片添加 vertical-align: middle | top | bottom; 等 (推荐)
    2. 把图片转换为块级元素 display: block;
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>解决图片底部空白间隙title>
        <style>
            div {
                border: 2px solid red;
            }
    
            img {
                vertical-align: bottom;
            }
        style>
    head>
    
    <body>
        <div>
            <img src="images/smile.jpg" alt="">
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26

    在这里插入图片描述

    溢出的文字省略号显示

    1. 单行文本溢出显示省略号——必须满足三个条件

    /* 1.文字显示不开时强制显示 */
    white-space: nowrap;
    /* 2. 超出部分隐藏 */
    overflow: hidden;
    /* 3. 文字用省略号替代超出的部分 */
    text-overflow: ellipsis;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>单行文字溢出title>
        <style>
            div {
                width: 150px;
                height: 80px;
                background-color: cyan;
                margin: 100px auto;
                /* 1.文字显示不开时强制显示 */
                white-space: nowrap;
                /* 2. 超出部分隐藏 */
                overflow: hidden;
                /* 3. 文字用省略号替代超出的部分 */
                text-overflow: ellipsis;
            }
        style>
    head>
    
    <body>
        <div>
            衣带渐宽终不悔,为伊消得人憔悴
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    在这里插入图片描述

    2. 多行文本溢出显示省略号

    多行文本溢出显示省略号,有较大兼容性问题,适合于 webKit 浏览器或者移动端(移动端大部分是 webKit 内核)

    /* 弹性伸缩盒子模型显示 */
    display: -webkit-box;
    /* 限制在一个块元素显示的文本的行数 */
    -webkit-line-clamp: 3;
    /* 设置或检索伸缩盒子对象的子元素的排列方式 */
    -webkit-box-orient: vertical;
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>多行文字溢出title>
        <style>
            div {
                width: 150px;
                height: 65px;
                background-color: cyan;
                margin: 100px auto;
                overflow: hidden;
                text-overflow: ellipsis;
                /* 弹性伸缩盒子模型显示 */
                display: -webkit-box;
                /* 限制在一个块元素显示的文本的行数 */
                -webkit-line-clamp: 3;
                /* 设置或检索伸缩盒子对象的子元素的排列方式 */
                -webkit-box-orient: vertical;
            }
        style>
    head>
    
    <body>
        <div>
            衣带渐宽终不悔,为伊消得人憔悴.衣带渐宽终不悔,为伊消得人憔悴
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33

    在这里插入图片描述

    更推荐让后台人员来做这个效果,因为后台人员可以设置显示多少个字,操作更简单

    常见布局技巧

    1. margin负值的运用一

    让每个盒子 margin 往左侧移动 -1px 正好压住相邻盒子边框

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>margin负值的巧妙运用title>
        <style>
            ul li {
                float: left;
                list-style: none;
                width: 150px;
                height: 200px;
                border: 1px solid cyan;
                margin-left: -1px;
            }
        style>
    head>
    
    <body>
        <ul>
            <li>1li>
            <li>2li>
            <li>3li>
            <li>4li>
            <li>5li>
        ul>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    在这里插入图片描述

    2. margin负值的运用二

    鼠标经过某个盒子的时候,提高当前盒子的层级即可(如果没有定位,则加相对定位(保留位置),如果有定位,则加 z-index

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>margin负值的巧妙运用title>
        <style>
            ul li {
                float: left;
                list-style: none;
                width: 150px;
                height: 200px;
                border: 1px solid cyan;
                margin-left: -1px;
            }
    
            ul li:hover {
                /* 盒子没有定位时,加相对定位 */
                position: relative;
                /* 盒子有定位时,由于子绝父相无法添加相对定位 */
                z-index: 1;
                border: 1px solid red;
            }
        style>
    head>
    
    <body>
        <ul>
            <li>1li>
            <li>2li>
            <li>3li>
            <li>4li>
            <li>5li>
        ul>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39

    在这里插入图片描述

    3. 文字围绕浮动元素

    类似于下图这样的效果,该怎么实现呢?

    在这里插入图片描述

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>文字围绕浮动元素title>
        <style>
            .box {
                width: 280px;
                height: 70px;
                margin: 100px auto;
            }
    
            .pic {
                float: left;
                width: 120px;
                height: 60px;
                margin-right: 10px;
            }
    
            .pic img {
                width: 100%;
                border-radius: 15px;
            }
    
            .box p {
                overflow: hidden;
                text-overflow: ellipsis;
                /* 弹性伸缩盒子模型显示 */
                display: -webkit-box;
                /* 限制在一个块元素显示的文本的行数 */
                -webkit-line-clamp: 2;
                /* 设置或检索伸缩盒子对象的子元素的排列方式 */
                -webkit-box-orient: vertical;
            }
        style>
    head>
    
    <body>
        <div class="box">
            <div class="pic">
                <img src="images/img.jpg" alt="">
            div>
            <p>河南一景区爆火,风景优美物价低,吸引许多游客前来打卡p>
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50

    在这里插入图片描述

    4. 行内块的巧妙运用

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>行内块的巧妙运用title>
        <style>
            * {
                margin: 0;
                padding: 0;
            }
    
            .box {
                text-align: center;
            }
    
            .box a {
                display: inline-block;
                width: 36px;
                height: 36px;
                background-color: #f7f7f7;
                border: 1px solid #ccc;
                text-align: center;
                line-height: 36px;
                text-decoration: none;
                color: #333;
            }
    
            .box .prev,
            .box .next {
                width: 85px;
            }
    
            .box .current,
            .box .elp {
                background-color: #fff;
                border: none;
            }
    
            .box input {
                width: 45px;
                height: 36px;
                border: 1px solid #ccc;
                outline: none;
            }
    
            .box button {
                width: 60px;
                height: 36px;
                background-color: #f7f7f7;
                border: 1px solid #ccc;
            }
        style>
    head>
    
    <body>
        <div class="box">
            <a href="#" class="prev"><<上一页a>
            <a href="#" class="current">2a>
            <a href="#">3a>
            <a href="#">4a>
            <a href="#">5a>
            <a href="#">6a>
            <a href="#" class="elp">...a>
            <a href="#" class="next">>>下一页a>
            到第
            <input type="text"><button>确定button>
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75

    在这里插入图片描述

    5. CSS三角强化

    DOCTYPE html>
    <html lang="en">
    
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>CSS三角巧妙运用title>
        <style>
            .price {
                width: 160px;
                height: 24px;
                border: 1px solid red;
                margin: 100px auto;
            }
    
            .miaosha {
                position: relative;
                float: left;
                width: 90px;
                height: 100%;
                background-color: red;
                text-align: center;
                color: #fff;
                font-weight: 700;
                margin-right: 8px;
            }
    
            .miaosha i {
                position: absolute;
                top: 0;
                right: 0;
                width: 0;
                height: 0;
                /* 1. 只保留右边的边框有颜色 */
                border-color: transparent #fff transparent transparent;
                /* 2. 样式都是solid */
                border-style: solid;
                /* 3. 上边框宽度要大,右边框宽度稍小,其余边框为0 */
                border-width: 24px 10px 0 0;
            }
    
            .origin {
                font-size: 12px;
                color: gray;
                text-decoration: line-through;
            }
        style>
    head>
    
    <body>
        <div class="price">
            <span class="miaosha">
                ¥9.99
                <i>i>
            span>
            <span class="origin">¥9999span>
        div>
    body>
    
    html>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61

    效果图:

    在这里插入图片描述

    CSS初始化

    不同浏览器对有些标签的默认值是不同的,为了消除不同浏览器对 HTML 文本呈现的差异,照顾浏览器的兼容,我们需要对 CSS 进行初始化

    简单理解:CSS 初始化是指重设浏览器的样式,也称为 CSS reset

    每个网页都必须首先进行 CSS 初始化

    这里我们以京东 CSS 初始化代码为例,打开京东商城源代码,找到其 CSS 代码

    在这里插入图片描述

    再找到初始化代码

    在这里插入图片描述

    我们来看一下它都做了些什么工作

    /* 把所有标签的内外边距清零 */
    * {
        margin: 0;
        padding: 0
    }
    
    /* em 和 i 斜体的文字不倾斜 */
    em,
    i {
        font-style: normal
    }
    
    /* 去掉 li 的小圆点 */
    li {
        list-style: none
    }
    
    
    img {
        /* border: 0 照顾低版本浏览器,如果图片外面包含了链接会有边框的问题 */
        border: 0;
        /* 取消图片底侧有空白缝隙的问题 */
        vertical-align: middle
    }
    
    button {
        /* 当我们鼠标经过button按钮的时候,鼠标变成小手 */
        cursor: pointer
    }
    
    a {
        color: #666;
        text-decoration: none
    }
    
    a:hover {
        color: #c81623
    }
    
    button,
    input {
    	/* "\5B8B\4F53" 就是宋体的意思 */
        font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif
    }
    
    body {
        /* 抗锯齿性,让文字显示得更加清晰 */
        -webkit-font-smoothing: antialiased;
        background-color: #fff;
        font: 12px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
        color: #666
    }
    
    .hide,
    .none {
        display: none
    }
    
    .clearfix:after {
        visibility: hidden;
        clear: both;
        display: block;
        content: ".";
        height: 0
    }
    
    .clearfix {
        *zoom: 1
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69

    Unicode 编码字体:

    把中文字体的名称用相应的 Unicode 编码来代替,这样就可以有效地避免浏览器解释 CSS 代码时候出现乱码

    比如:

    • 黑体 \9ED1\4F53
    • 宋体 \5B8B\4F53
    • 微软雅黑 \5FAF\8F6F\96C5\9ED1

    🧸 这次的分享就到这里啦,继续加油哦^^
    🐱 我是程序喵,陪你一点点进步
    🍭 有出错的地方欢迎在评论区指出来,共同进步,谢谢啦

  • 相关阅读:
    基于SSM+MySQL+Layui的企业库存信息管理系统
    OpenFeign讲解+面试题
    nodejs+vue大学生招聘网站应聘系统设计与实现5b14b
    【mysql】Mysql自定义变量 @rownum使用
    VSCode错误整理
    Linux:进程地址空间的简易认识
    HTTP1.0,HTTP1.1,持久连接,非持久连接,TCP,UDP,三次握手和四次挥手,HTTP与HTTPS,对称加密和非对称加密,状态码
    反射的概念 和基本使用(一)
    gcc的学习及 版本太低如何在conda环境下重新进行安装
    Windows系统怎么加密文件夹?
  • 原文地址:https://blog.csdn.net/weixin_62511863/article/details/126172438