保持几个Div在容器内居中。页脚也卡在中间

时间:2012-09-17 18:02:20

标签: css image positioning html sticky-footer

我意识到这个问题在这里出现了几次,但我似乎无法找到解决我具体问题的方法。我目前正在建立一个摄影网站,虽然花了我很长时间,它还没问题。我通常不会问太多问题,而是寻找答案,但这个让我发疯。我对网络建设很陌生,认为自己是一个完整的新手。

现在我有一个主要的“照片”页面,它将链接到画廊,在这个页面中,我会有大量的缩略图,上面有一些奇特的CSS3效果。

在这个页面中,我创建了6个包含这些大缩略图的div,我需要他们做的是在缩小屏幕时重新定位(或在较小的res显示等上显示)现在img容器实际上在显示时重新定位在较小的设备上但我正在努力实现的是将6个div保持在屏幕中间的中心位置。

我尝试的最后一个解决方案是“display:inline-block”而且包含div的高度似乎并没有随内容扩展。我想这里有点遗漏,所以会感激任何建议和帮助。

我还没有深入研究页脚问题,但是对此有任何帮助也会很棒。问题是它只是位于页面的底部(虽然我感觉很粘)但是现在页面有足够的内容来滚动它只是保持原样。

非常欢迎网站上的任何其他帮助和评论:o)非常感谢提前!!

有问题的页面russfrancis.co.uk/photo

请参阅以下标记和CSS:

照片加价:

<div class="photomain">
  <div class="containerwrapper">
    <div class="photoimgcontainer">
      <div class="view view-second">
        <img src="images/photo/tn/asialg.jpg" />
      <div class="mask"></div>
      <div class="content">
        <h2>Asia</h2>
        <p>In 2008 I spent 6 months backpacking around Asia.</p>
        <a href="asia.htm" class="info">View The Galleries</a>
      </div> <!-- Content Close -->
      </div> <!-- View-second close -->
    </div> <!-- Img Container Close -->
      <div class="photoimgcontainer">
      </div>
      <div class="photoimgcontainer">
      </div>
      <div class="photoimgcontainer">
      </div>
      <div class="photoimgcontainer">
      </div>
      <div class="photoimgcontainer">
      </div>
    </div> <!-- Container Wrapper Close -->
  </div>

CSS:

.photomain{
width: 90%;
height:auto;
margin: 130px auto 0;}

.containerwrapper{
display:inline-block;
height:auto;}

.photoimgcontainer{
background-color:rgba(19,19,19,1);
width: 535px;
height: 360px;
float:left;
margin: 5px 5px;}

页脚标记:

<footer>
  <div class="footdiv">
    <p align="center">Follow Me</p> 
    <div class="footimg">
     <a href="https://www.facebook.com/RussFrancisPhotography" target="_blank"><img src="images/facebook.png" width="40" height="40" border="0" alt="RFP Facebook Page"></a>
     <a href="http://www.flickr.com/photos/russfrancisphotography/" target="_blank"><img src="images/flickr.png" width="40" height="40" border="0" alt="Russ Francis Flickr"></a>
     <a href="http://vimeo.com/lucidskies" target="_blank"><img src="images/vimeo.png" width="40" height="40" border="0" alt="Vimeo - Lucid Skies"></a>
     <a href="https://twitter.com/R_F_Photo" target="_blank"><img src="images/twitter.png" width="40" height="40" border="0" alt="Russ Francis - Twitter"></a>
    </div> 
 </div>
 <p class="pleft">&copy; Russ Francis Photography 2012</p>
 <div class="pright"><a href="#">Contact Me</a></div>
</footer>

页脚CSS:

footer {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
color:#FFF;
position:absolute;
left: 0;
bottom: 0;
height: 115px;
width: 100%;}

.footdiv p {
padding-bottom: 10px;
border-bottom: 1px solid rgba(153,0,0,1);}

.footdiv {
margin: 0 auto 0;   
width:200px;
height:60px;}

.footimg {
padding-left: 14px;}

.pleft {
padding-left: 10px;
color:#999;
font-size:12px;
float:left;}

.pright {
font-size:15px;
padding-right: 20px;
float:right;}

.pright a {
color:#FFF;
text-decoration:none;}

2 个答案:

答案 0 :(得分:1)

从页脚中移除bottom: 0;将位于底部

footer {
    color: #FFFFFF;
    font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;
    height: 115px;
    left: 0;
    position: absolute;
    width: 100%;
}

.containerwrapper {

    height: auto;
    margin: 0 auto;
    max-width: 1100px;
}

只需在<div style="clear:both;"></div>

之前添加<footer >即可

输出 不要考虑白线,因为有两个图像

enter image description here enter image description here

答案 1 :(得分:0)

尝试在您的网站上使用此处的css,看看它是否适合您:http://dabblet.com/gist/3739171