我的網站有問題。這張照片在桌面上看起來不錯,但在我的手機上看起來很糟糕,因爲它放大了。在手機上覆蓋背景大小
我該如何解決這個問題? 它鴕鳥政策工作,
background-size:cover;
與背景的DIV有兩個類
.content{
color: white;
font-family: "Another Typewriter";
width:100%; height:1000px;
font-size: 300%;
padding-left: 15%;
padding-right: 15%;
padding-top: 10%;
text-align: center;
background-size: cover;
}
.parallax{
height: 100%;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#xyz{background-image: url(URLtoimage);}
的div容器:
<div id="xyz" class="parallax content">
<legend class="text-center content-headline">XYZ</legend>
Some text
</div>
你有更多的代碼,如HTML和CSS您使用??? –
您是否包含[視口元標記](https://www.w3schools.com/css/css_rwd_viewport.asp)?例如:' –