Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
渐变文字.html 673 Bytes
Copy Edit Raw Blame History
Hugh_zhang authored 2021-08-12 07:45 . CSS3渐变文字,图片阴影
<!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>
body {
background-color: black;
}
h1 {
margin: 200px auto;
font-size: 100px;
text-align: center;
background-image: linear-gradient(green, orange);
-webkit-background-clip: text;
color: transparent;
}
</style>
</head>
<body>
<h1>这是一个渐变文字</h1>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化