技術(shù)頻道導(dǎo)航
HTML/CSS
.NET技術(shù)
IIS技術(shù)
PHP技術(shù)
Js/JQuery
Photoshop
Fireworks
服務(wù)器技術(shù)
操作系統(tǒng)
網(wǎng)站運(yùn)營(yíng)

贊助商

分類(lèi)目錄

贊助商

最新文章

搜索

CSS實(shí)現(xiàn)文字顏色漸變效果

作者:admin    時(shí)間:2021-7-13 10:17:29    瀏覽:

本文介紹如何使用CSS實(shí)現(xiàn)文字顏色漸變效果。

CSS實(shí)現(xiàn)文字顏色漸變效果 
CSS實(shí)現(xiàn)文字顏色漸變效果

CSS

body {
  display: grid;
  place-items: center;
  background: black;
  text-align: center;
  padding: 120px 20px;
}

h1 {
  display: inline-block;
  font-size: 80px;
  line-height: 0.9;
  padding: 20px;
  font-family: 'Syncopate', sans-serif;
  text-transform: uppercase;
  background: radial-gradient(
    circle farthest-corner at center center,
    white,
    #111
  ) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

HTML

<h1>mega<br>fancy</h1>

execcodegetcode

解釋?zhuān)?/p>

1、文字顏色設(shè)置代碼是這行

background: radial-gradient(
    circle farthest-corner at center center,
    white,
    #111
  ) no-repeat;

white#111

2、background-clip 屬性,它允許你控制背景圖像或顏色超出元素的填充或內(nèi)容的程度。

相關(guān)文章推薦

 

標(biāo)簽: css  css3  background-clip  文字漸變  
x
  • 站長(zhǎng)推薦
/* 左側(cè)顯示文章內(nèi)容目錄 */