文字描边效果

在这里插入图片描述
文字描边效果可以通过text-shadow来实现,也可以通过-webkit-text-stroke来实现

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>文字描边效果</title>
    <style>
        body{
            width: 100vw;
            height: 100vh;
            margin: 0;
            padding: 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .text-container{
            width: 100%;
            height: 100%;
            text-align: center;
            line-height: 100vh;
            background: linear-gradient(45deg, #e45c08, #1309d7); /* 从左上到右下的渐变 */
        }
        .text{
            font-size: 100px;
            font-weight: 1500;
            /* 这种方式也能实现但是不支持文字透明 */
            /* text-shadow: 
            0 2px #fff,
            0 -2px #fff,
            -2px 2px #fff,
            2px -2px #fff,
            -2px 0 #fff,
            2px 0 #fff; */

            /* 这种方式支持文字透明,但是兼容性可能有问题 */
            -webkit-text-stroke: 2px #fff;
            color: transparent;
        }
    </style>
</head>
<body>
    <div class="text-container">
        <span class="text">哀吾生之须臾,羡长江之无穷</span>
    </div>
    
</body>
</html>

相关推荐

  1. 【CSS】实现文字

    2024-07-21 23:58:03       44 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-21 23:58:03       168 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-21 23:58:03       185 阅读
  3. 在Django里面运行非项目文件

    2024-07-21 23:58:03       155 阅读
  4. Python语言-面向对象

    2024-07-21 23:58:03       169 阅读

热门阅读

  1. 嵌入式软件工作能力

    2024-07-21 23:58:03       31 阅读
  2. C#各种锁知识点

    2024-07-21 23:58:03       32 阅读
  3. Python之后端Django(四)

    2024-07-21 23:58:03       34 阅读
  4. n4.Nginx 核心模块

    2024-07-21 23:58:03       33 阅读
  5. android audio 相机按键音:(二)加载与修改

    2024-07-21 23:58:03       42 阅读
  6. 数字转换(树形DP)

    2024-07-21 23:58:03       37 阅读
  7. python 爬虫技术 第03节 基础复习 控制结构

    2024-07-21 23:58:03       32 阅读
  8. Python 模块导入方式

    2024-07-21 23:58:03       38 阅读