Skip to content Skip to sidebar Skip to footer

Resize Div On Resizing Window

I built an HTML/CSS footer for a site. But when I resize the screen, the footer doesn't resize and I can only see a clipped footer. I'd like the footer div to resize so I can see a

Solution 1:

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-boxh2{
    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.

Solution 2:

As @turnip pointed out your div has a fixed height, that means that you can't see the rest of the items because they overflow the container.

Try removing height: 30px;. To achieve this height for wide enough screen you simply need to add margin-bottom: 0; for h2 tag.

P.S. Consider using classes instead of ids to style your layout, the have much less specificity and are considered a good practice to use.

P.P.S. Why are you using an h2 for a list of links, how about ul and li?

Solution 3:

Based on suggestions from folks above, I am pasting the answer here for reference to others who would like to see a working solution!

.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-boxh2{
	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-boxa{
	text-decoration: none;
	outline: none;
	color: #A9A9A9;
}
.footer-boxa:hover{
	text-decoration: underline;
}
<divclass="footer-box"><h2><ahref="/weddings/">Weddings</a> |
	<ahref="/cityhall/">City Hall</a> |
	<ahref="/engagements/">Engagements</a> |
	<ahref="/barmitzvah/">Bar Mitzvah,Quinceanera</a> |
	<ahref="/birthdays/">Birthdays</a> |
	<ahref="/maternity/">Maternity</a> |
	<ahref="/portraits/">Portraits</a></h2></div>

Post a Comment for "Resize Div On Resizing Window"