利用文字阴影实现火焰字
Posted gunner
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用文字阴影实现火焰字相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>调试练习</title>
<style>
p{
text-align: center;
font-size: 50px;
color: red;
text-shadow: 0 0 4px white,
0 -5px 4px #ff3,
2px -10px 6px #fd3,
-2px -15px 11px #f80,
2px -25px 18px #f20;
}
</style>
</head>
<body>
<p>hello cogo</p>
</body>
</html>
以上是关于利用文字阴影实现火焰字的主要内容,如果未能解决你的问题,请参考以下文章