<!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>抖音风格字体效果</title> <style> body{ background-color: #555; } h1{ color: #fff; font-size: 40px; text-shadow: #f03740 -1px -3px,#2addfd 3px 0px; } .music{ font-size: 40px; text-shadow: -1px -3px #ff00de, 0 0 20px #ff00de; } </style> </head> <body> <h1>抖音</h1> <h1 class="music">music</h1> </body> </html>
效果图:
原文:https://www.cnblogs.com/youknowUL/p/11484021.html