Hello, so this is a problem I have every time I do this type of CSS layout. I know I could just download a pre-designed layout and avoid this problem all together, but I would rather know what the solution is.
So i have a header, left navigation, and right content area basic layout. I have the left navigation and right content area inside of a container div, with a 20px right hand margin on the left hand navigation.
The layout is fine until I add a border around the left navigation, and right content area. When I add the border, the right content area appears below the left navigation. I have put together 2 examples to show my problem. I'm thinking its one small dumb little tag im missing to make this all work.
Example With NO Border (Works Perfect)
http://itsnetservices.com/andy/index2.html
CSS Code
Code:
body {
background-color : #f2f2f2;
}
.table {
border-width : 1px 1px 1px 1px;
border-spacing : 0;
border-style : solid solid solid solid;
border-color : #646464 #646464 #646464 #646464;
background-color : #ffffff;
}
a:link, a:visited {
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
font-weight : normal;
color : #000000;
text-decoration : none;
}
a:hover {
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
font-weight : normal;
color : #000000;
text-decoration : none;
}
.header {
background-image : url(images/bg_header.jpg);
background-repeat : no-repeat;
width : 860px;
height : 115px;
margin-left : auto;
margin-right : auto;
margin-bottom : 20px;
}
.container {
width : 860px;
margin-left : auto;
margin-right : auto;
}
.navigation {
width : 177px;
margin-left : 0;
margin-right : 20px;
float : left;
background-color : #ffffff;
}
.content {
width : 663px;
margin-left : 0;
margin-right : 0;
float : left;
background-color : #ffffff;
}
Example With A Border (Falls Apart)
http://itsnetservices.com/andy/index3.html
CSS Code
Code:
body {
background-color : #f2f2f2;
}
.table {
border-width : 1px 1px 1px 1px;
border-spacing : 0;
border-style : solid solid solid solid;
border-color : #646464 #646464 #646464 #646464;
background-color : #ffffff;
}
a:link, a:visited {
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
font-weight : normal;
color : #000000;
text-decoration : none;
}
a:hover {
font-family : Arial, Helvetica, sans-serif;
font-size : 12px;
font-weight : normal;
color : #000000;
text-decoration : none;
}
.header {
background-image : url(images/bg_header.jpg);
background-repeat : no-repeat;
width : 860px;
height : 115px;
margin-left : auto;
margin-right : auto;
margin-bottom : 20px;
}
.container {
width : 860px;
margin-left : auto;
margin-right : auto;
}
.navigation {
width : 177px;
margin-left : 0;
margin-right : 20px;
float : left;
background-color : #ffffff;
border-width : 1px;
border-style : solid;
border-color : #646464;
}
.content {
width : 663px;
margin-left : 0;
margin-right : 0;
float : left;
background-color : #ffffff;
border-width : 1px;
border-style : solid;
border-color : #646464;
}
Thanks in advance.
-Adam
|