LoginSignup
0
0

More than 3 years have passed since last update.

画像に文字を乗せる

Posted at

画像に文字を乗せるには、画像のクラスのpositionを”relative”にする。
文字のクラスのpositionを"absolute"にし、位置を指定する。

.visual {
position: relative;
}

.visual p {
position: absolute;
width: 50%;
transform: translate(-50%,-50%); /縦と横の文字のズレを修正
top: 45%; /
画像のtopからの位置
left: 50%; /画像の左からの位置(右からにするには-50%とする)
/
文字の装飾を指定する*/
}

0
0
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
0
0