background-clip: text实现文字渐变
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style type="text/css"> 5 .bg { 6 height: 100px; 7 width: 300px; 8 line-height: 50px; 9 color: transparent; 10 text-align: center; 11 font-size: 50px; 12 background: linear-gradient(to right, #923eb9, #13cb5f, #083f5b); 13 background-clip: text; 14 -webkit-background-clip: text; 15 -webkit-text-fill-color: transparent; 16 } 17 </style> 18 </head> 19 <body> 20 <div class="bg">内容(clip)</div> 21 </body> 22 </html>
background-clip: text;现阶段只有 chrome支持的比较好。
posted @ 2025-03-03 09:23 华安 阅读(0) 评论(0) 推荐(0) 编辑