CSS Photo Gallery浮动问题 - MIxing Landscape&肖像照片

时间:2011-08-06 22:30:33

标签: jquery css css-float image-gallery photo-gallery

每个人都好,

所以我一直在苦苦挣扎,似乎无法得到它。

我希望有一个适合Landscape& amp;肖像照片在一起&不会留下任何空白(当然,除非必要时在画廊的最后)。

我们将调整拉入2种尺寸的图像(在下面的css中看到)...然后我无法弄清楚如何将它们放在一起以便很好地适应。

我对任何想法持开放态度(因此它不一定只是css - 尽管如果可能的话,这将是首选)。这可能是我忽略的小事。但代码如下 - 当肖像照片无法一直向左浮动时,请注意照片之间的空白区域。

非常感谢...

#galleryrow {
float: left;
width: 690px;
height: 1600px;
background-color: lightyellow;
margin-left: 60px;
}

#galleryrow img.portrait { 
float: left;
background-color: white;
height: 300px; /*  Height = 300 + 13 + 13 = 326  */
width: 200px; /* Width = 200 + 12 + 12 = 224  */
padding: 13px 12px;
margin-right: 4px;
margin-bottom: 4px;
border: 1px dashed lightgrey;
}

#galleryrow img.portrait:hover {
background-color: #e5e8e7;
height: 300px;
width: 200px;
}

#galleryrow img.landscape {
background-color: white;
height: 130px; /* Height = 130 + 15 + 15 = 160    Multiply by 2 stacked = 320  */
width: 200px;
padding: 15px 12px;
border: 1px dashed lightgrey;

}

#galleryrow img.landscape:hover {
background-color: #e5e8e7;
height: 130px;
width: 200px;
padding: 15px 12px;
}

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Image Gallery w/ Floats</title>
<link rel="stylesheet" type="text/css" href="floatgallery.css">
</head>

<div id="galleryrow">
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="landscape" src="jetsetter.jpg"></a>
        <a href="#"><img class="portrait" src="philadelphia_skyline1.jpg"></a>
</div>


</html>

1 个答案:

答案 0 :(得分:0)

从#galleryrow中删除浮动,并将浮动左侧添加到img.landscape,如下所示。试试吧。

#galleryrow {
 /*float: left;*/
}

#galleryrow img.landscape {
 float: left;
}