我为网站构建了一个HTML / CSS页脚。但是当我调整屏幕大小时,页脚不会调整大小,我只能看到剪裁的页脚。我希望页脚div可以调整大小,以便随时查看所有文本。任何帮助将不胜感激。
/* Footer Style */
#footer-background {
position: fixed;
height: 30px;
left: 0%;
bottom: 0%;
z-index: 50;
width: 100%;
background: #000000;
opacity: 0.80;
}
#footer-box{
width: 95%;
margin: auto;
padding: 0 10px;
}
#footer-box h2{
margin-top: 0;
font-size: 20px;
text-align: center;
line-height: 30px;
font-weight: normal;
font-family: Arial, sans-serif;
color: #A9A9A9;
}
#footer-box a{
text-decoration: none;
outline: none;
color: #A9A9A9;
}
#footer-box a:hover{
text-decoration: underline;
}
<!-- Footer bar -->
<div id="footer-background">
<div id="footer-box">
<h2>
<a href="/abc/">Title 1</a> |
<a href="/abc/">Title 2</a> |
<a href="/abc/">Title 3</a> |
<a href="/abc/">Title 4</a> |
<a href="/abc/">Title 5</a> |
<a href="/abc/">Title 6</a> |
<a href="/abc/">Title 7</a> |
<a href="/abc/">Title 8</a>
</h2>
</div>
</div>
<!--/ Footer bar -->
答案 0 :(得分:1)
我想在此处提出一些观点: (1)“身高”财产
#footer-background {
position: fixed;
height: 30px;
left: 0%;
bottom: 0%;
z-index: 50;
width: 100%;
background: #000000;
opacity: 0.80;
}
在上面的代码中你增加了高度:30px;意思是,如果内容环绕,则限制此元素增长。你可以使用填充:20px;或者您想要的任何大小,以便在缩小屏幕大小时,内容将包含在元素内部。 (2)h2具有预定义的css属性
#footer-box h2{
margin-top: 0;
font-size: 20px;
text-align: center;
line-height: 30px;
font-weight: normal;
font-family: Arial, sans-serif;
color: #A9A9A9;
}
h2元素具有预定义的边距。而不只是删除margin-top,尝试从h2周围删除边距。即保证金:0; 我希望这能帮助你理解这一点。
答案 1 :(得分:0)
由于@turnip指出你的div有一个固定的高度,这意味着你看不到剩下的物品,因为它们会溢出容器。
尝试删除height: 30px;
。要为足够宽的屏幕达到此高度,您只需为margin-bottom: 0;
标记添加h2
。
P.S。考虑使用类而不是id来设置您的布局样式,具有更低的特异性并被认为是一种很好的实践。
P.P.S。为什么使用h2
作为链接列表,ul
和li
怎么样?
答案 2 :(得分:0)
根据上述人士的建议,我在这里粘贴答案,以供其他希望看到有效解决方案的人参考!
.footer-box{
position: fixed;
font-family: Arial, sans-serif;
color: #FFFFFF;
background-color: #000000;
font-size: 11px;
width: 100%;
opacity: 0.8;
z-index: 50;
bottom: 0px;
left: 0px;
}
.footer-box h2{
margin-top: 0;
margin-bottom: 0;
font-size: 20px;
text-align: center;
line-height: 30px;
font-weight: normal;
font-family: Arial, sans-serif;
color: #A9A9A9;
}
.footer-box a{
text-decoration: none;
outline: none;
color: #A9A9A9;
}
.footer-box a:hover{
text-decoration: underline;
}
&#13;
<div class="footer-box">
<h2>
<a href="/weddings/">Weddings</a> |
<a href="/cityhall/">City Hall</a> |
<a href="/engagements/">Engagements</a> |
<a href="/barmitzvah/">Bar Mitzvah,Quinceanera</a> |
<a href="/birthdays/">Birthdays</a> |
<a href="/maternity/">Maternity</a> |
<a href="/portraits/">Portraits</a>
</h2>
</div>
&#13;