gpt4 book ai didi

css - 将多个 Div 保持在一个容器的中心。页脚也卡在中间

转载 作者:行者123 更新时间:2023-11-28 02:04:10 25 4
gpt4 key购买 nike

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

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

在此页面中,我创建了 6 个包含这些大缩略图的 div,我需要它们做的是在屏幕缩小时重新定位(或显示在较小的分辨率显示器上等)现在 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;}

最佳答案

删除 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

关于css - 将多个 Div 保持在一个容器的中心。页脚也卡在中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12464790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com