スマホでも背景が固定されるようにしたくて以下のcssのように設定したのですが、
背景画像の大きさがresult-coverを超えて、サイト全体に多いかぶさってしまいます。
どうすれば直りますか?
ちなみにこちらのサイトを参照してます。
https://web.runland.co.jp/blog_cate2/post-3558
<section class="result-cover"> 中身 </section>
.result-cover { // background-color: #FDECE6; height: auto; background-image: url("../img/triangles1-55.png"); background-color:white; background-attachment: fixed; background-size: cover; position: fixed; position: relative; z-index: 7; padding-bottom: 30px; } .result-cover::before { content:""; display:block; position:fixed; top:0; left:0; z-index:-1; width:100%; height:100%; background-repeat:no-repeat; background-position:50% 100%; background-image: url("../img/triangles1-55.png"); background-size:cover; }
結局どういう意図でこのコードになっているのか分かりませんが、同じ画像使ってたら比較にならないのでは
回答2件
あなたの回答
tips
プレビュー