有沒有人可以弄清楚如何在我縮小窗口或不同分辨率設備的大小時,如何讓圖庫中的圖像遠離圖像框。響應式網頁佈局問題
問題:
代碼:
HTML:
<!DOCTYPE html>
<html>
<head>
<title>BlackBird </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/functions.js"></script>
</head>
<body>
<nav>
</nav>
<header class="background">
<div class="logo"></div>
</header>
<section class="conteudo">
<article>
</article>
<div class="bubble-wrapper">
<article>
</article>
</div>
<article>
<hr>
<h1>Galeria</h1>
</article>
<div class="img-box">
<img src="images/gallery/1.jpg">
<img src="images/gallery/2.jpg">
<img src="images/gallery/8.jpg">
<img src="images/gallery/4.jpg">
<img src="images/gallery/6.jpg">
<img src="images/gallery/7.jpg">
</div>
<footer>
</footer>
</html>
CSS:
.img-box {
width: 100%;
height: 400px;
background: black;
}
.img-box img {
opacity: 0.6;
width: 15%;
display: inline-block;
padding-left: 18px;
padding-top: 37px;
}
.img-box img:hover {
opacity: 1;
}
請查看[如何提問](http://stackoverflow.com/help/how-to-ask)。你應該包括任何相關的代碼。現在,看一張圖像,可能會有人猜測如何解決**你的具體問題**。 – hungerstar
浮動圖像並清除包含的框可能?很難理解你在問什麼。 – iamnotmaynard
基本上我想要的是當我縮小窗口的尺寸(以及其他解決方案)時,圖像仍然保留在黑色方塊內部,這不會發生atm。我已經在html上添加了視口標籤,所以我不知道可能是什麼導致這個\: – m3k3r1