New Reply

html footer problem

 
Share Thread
Feb11-13, 03:44 PM   #1
 

html footer problem


Not sure why my footer is not working correctly in my file, anyone see what is wrong?

Code:
<html>
<head>
<title> Layout with Divs </title>
<link href="divstyle.css" rel="stylesheet" type="text/css" /> 
</head>


<body>

<div id="outer">
<div id="bannerbox"> Banner </div>
<div id="hyperlink"> Hyperlink </div>
<div id="content"> Content </div>
<div id="footer"> Footer </div>
</div>

</body>
</html


*****~And this is my css~*****

body{
background-color: #424242;
margin-top: 0;
padding-bottom: 60px;

}

div{
border: 1px solid black;
}

#outer{ 
border: 1px dotted #ee0bbb;
width: 603px;
margin-left: 140px;
background-color: white;
height: 800px;
postion: relative;
}

#bannerbox{ 
width: 480px;
height: 70px;
margin-left: 53px;
margin-top: 5px;
} 

#hyperlink{
width: 150px;
height: 200px;
margin-top: 40px;
margin-left: 10px;
float: left;

}

#content{
width: 350px;
height: 400px;
margin-top: 40px;
margin-right: 10px;
float: right;
}

#footer {
width: 50px;
height: 40px;
margin-top: 40px;
margin-right: 10px;
float: bottom;
}
PhysOrg.com science news on PhysOrg.com

>> Leading 3-D printer firms to merge in $403M deal (Update)
>> LA to give every student an iPad; $30M order
>> CIA faulted for choosing Amazon over IBM on cloud contract
Feb11-13, 03:47 PM   #2
 
Admin
Blog Entries: 5
Bottom is not a valid float value
Feb11-13, 03:51 PM   #3
 
What do you suggest I change it to? Should i change the data type ?
Feb11-13, 05:41 PM   #4

Math 2012
 
Recognitions:
Science Advisor Science Advisor

html footer problem


Quote by camel-man View Post
What do you suggest I change it to?
http://www.w3schools.com/cssref/pr_class_float.asp

- not that any of the legal values will help much.
New Reply

Similar discussions for: html footer problem
Thread Forum Replies
Eliminate clutter in Microsoft Word generated HTML files with the Office 2000 HTML Filter Computing & Technology 0