1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【CSS】CSSだけでおしゃれな表現 小技集(備忘録)

Posted at

CSSだけでおしゃれな表現 小技集(備忘録)
※どんどん追加していく所存

1.テキストの背景をグラデーションにする方法

html
<p>This is dummy sentence</p>
css
p {
display: inline-block;
background: linear-gradient(100deg, #008000, #000080 48%, #fcbbbb 90%);
 -webkit-background-clip: text;
background-clip: text;
 -webkit-text-fill-color: transparent;
font-size: 36px;
}

See the Pen Text gradation by Kazuhito Nakayama (@kazuhito-nakayama) on CodePen.

1
5
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
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?