文字の上に画像を乗せたいのですが、調べても出てきません。
画像の上ではなく、文字の上に画像です。
文字のサイズを縦500px横500pxとして、その上に画像サイズを縦50px横50pxを乗せたいです。
cssにて、ポジションやz-indexなど設定しましたが、文字の上に画像が出てくることはありません。
そもそも出来ない事なのでしょうか?
コードを書き足させて頂きました。
html
1 <header> 2<div id="top_img"> 3<div class="text"> 4 <p>安心・安全<br>足場の事なら</p> 5</div> 6<div class="icon"> 7 <img src="imags/k0898_3.png" alt=""> 8</div> 9</div> 10</div> 11 </header>
scss
1 #top_img { 2 width: 100vw; 3 height: 100vh; 4 overflow: hidden; 5 position: relative; 6 7 .text { 8 p { 9 background-image: url("./imags/IMG_1211.jpeg"); 10 background-size: cover; 11 background-repeat: no-repeat; 12 width: 100vw; 13 height: 100vh; 14 background-attachment: fixed; 15 background-position: 50% 50%; // animation: animationZoom 5s ease-in-out forwards; 16 color: #fff; 17 font-size: 4rem; 18 padding-top: 50px; 19 animation: sample2Anime 4s linear infinite alternate; 20 text-align: center; 21 z-index: -100; 22 } 23 } 24 25 .icon { 26 img { 27 background-color: red; 28 position: absolute; 29 z-index: 100; 30 width: 200px; 31 height: 300px; 32 } 33 } 34 }
できると思います。
コードをご提示ください。
ソースコードを書きましょう
https://teratail.com/help/question-tips#questionTips3-5-1
3-7. markdownを利用しましょう
https://teratail.com/help/question-tips#questionTips3-7
文字の上に画像をのせたら文字が見えないと思いますが?
文字の上に乗せたい画像というのは、k0898_3.png でいいのですよね?
縦50px横50pxというCSSになっていませんが、それは気にしなくていいですか?
時間がなかったので、↑の前提で回答しました。
回答1件
あなたの回答
tips
プレビュー