Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

my header and other div layout are not flushed together 1

Status
Not open for further replies.

miscluce

MIS
Oct 4, 2007
149
US
I am trying to learn designing with div tags and css styles but I cant seem to get my sections to flush together without any spaces in between. Can someone help me design a simple layout that has a header, left column, and a content area that are all center aligned touched together without any spaced in between layouts?


web page code:
<html xmlns=" >
<head id="Head1" runat="server">
<title>Untitled Page</title>
<link href="WebSiteVB/DIVLayout4.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="main">

<form id="form1" runat="server">
<div id="header" >Header
</div>
&nbsp;
<div id="leftcolumn">Left Column
</div>
<div id="content">Content
</div>
</form>
</div>

</body>
</html>

css style sheet:
#main
{
width: 900px;
height: 800px;
margin: 0px auto 0px auto;
padding: 0px;
border-right: silver thin solid;
border-top: silver thin solid;
border-left: silver thin solid;
border-bottom: silver thin solid;
}
#header
{
padding: 0px;
width: 900px;
height: 170px;
background-image: url(WebSiteVB/images/topbg1.png);
background-color: gray;
}
#leftcolumn
{ top:0px;
background: #f00;
float:left;
width:100px;
height:600px;
padding: 0px;
}
#content
{
background: #fff;
top:0px;
width:60%;
height:50%;
padding: 0px;
}
 
thanks for teh reply but no that didnt do anything .
 
The layout you are seeing is exactly what you've coded for, including the "&nbsp;" which is giving you the gap inbetween your header and lower sections.

If you don't want the gap, why have an &nbsp; there?

Dan



Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top