Hi all,
I'm developing a website, where the company would like 2 images to appear on the right side of the footer. I have no idea why float:right; won't work when it does for their banner.

Can anyone tell me what to do to fix it?

#footer
{
	position:absolute;
	bottom:0%;
	right:0%;
	width:90%;
	height:10%;
	float:right;
	background-color:#00FF33;
}

Banner works fine, but I don't spot a difference in code:

#banner
{
	position:absolute;
	top:0px;
	right:0px;
	width:250px;
	height:122px;
	float:right;
}

NB: Background color has only been declared to I can keep track of where the div is on the browser, it's not there pernamently :)

Cheers,
Ben

remove the dimensioning from zero
0pt = 0px = 0%= 0em = 0,
dimensioned zero may put the browser into quirks mode,
it could be as simple as how the browser handles invalid css

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.