LoginSignup
6
9

More than 5 years have passed since last update.

フォントに斜めグラデーションを入れる

Last updated at Posted at 2017-08-28

Demo : https://codepen.io/mo4_9/pen/MvPwJX

スクリーンショット 2017-08-28 16.55.12.png

.text{
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg,#fd107f,#ff8519);
}

※IEでは使えない
CSS text-stroke and text-fill

参考
[CSS]「background-clip」を使って、テキストの下に画像を表示するスタイルシート

6
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
9