I would like to address some points here :
(1) "height" property
#footer-background {
position: fixed;
height: 30px;
left: 0%;
bottom: 0%;
z-index: 50;
width: 100%;
background: #000000;
opacity: 0.80;
}
In above piece of code you added height:30px; meaning, you are restricting this element to grow if content wrap around. You can use padding: 20px; or whatever size you want so that when you scale down the screen size, content will wrap inside the element.
(2) h2 has pre-defined css property
#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 element has predefined margins. instead of just removing margin-top, try to remove margins from all around h2. i.e margin:0;
I hope this will help you understanding the point.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…