0
我試圖使其更加符合手機。我有無法正確調整大小的背景圖片。我試過媒體查詢,不知道爲什麼它不起作用。我的代碼如果在下面;背景圖片,手機和媒體查詢
.container3{
display: flex;
align-items: center;
background-size: cover;
height: 700px;
text-shadow: 0.25px 0.25px 0.25px #000000;
background-image: url('Images/homepage.jpg');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
@media all and (max-width:480px)and(min-width:0px) {
.container3 {
width: 100%;
background-image: url('Images/homepage.jpg');
}
}
<html> \t
<title>Unity</title>
<link href="Style.css" rel="stylesheet"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"/>
<meta name="viewport" content="width=500, initial-scale=1">
<body>
<div class="container3">
<div class="title">
<h1>
bringing people together
</h1>
<p>free advertising space</p>
</div> \t
</div>
</body>
</html>
你可以檢查http://www.w3schools.com/css/css_rwd_images.asp或嘗試使用最大寬度,而不是寬度 – John120
我們不能幫助,因爲你的示例代碼被打破了。對於丟失的圖像使用服務像http://placehold.it –