- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我意识到这个问题在这里出现过几次,但我似乎找不到解决我的具体问题的方法。我目前正在建立一个摄影网站,虽然花了我很长时间,但进展顺利。我通常不会问太多问题,而是寻找答案,但这一个让我发疯。我对 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">© 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 >
之前
输出不要因为有牵引图像而考虑白线
关于css - 将多个 Div 保持在一个容器的中心。页脚也卡在中间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12464790/
我是一名优秀的程序员,十分优秀!