☀【CSS3】文本描边 textstroke / 文本填充色 textfillcolor

如果丘处机没有路过牛家村,中国将是最发达国家
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <title></title>
    <style type="text/css">
        .box {
            background-color: #FF0;
            color: #0F0;
            font-size: 50px;
            -webkit-text-stroke: 1px #00F;
            -webkit-text-fill-color: transparent;
        }
    </style>
</head>
<body>
    <div class="box">如果丘处机没有路过牛家村,中国将是最发达国家</div>
</body>
</html>
原文地址:https://www.cnblogs.com/jzm17173/p/2499308.html