Jump to content

DIV layout problem


peuge

Recommended Posts

Hey all,

 

I am having problems with the code below. The left top and left bottom content aligns properly but then the right content goes below the content box and I cant seem to get it in the right content block? Hope this makes sense any help much appreciated.

 

Thanks in advance :)

 

 

CSS Code

body{
background-color: black;
}
#content{
margin: auto;
background-image: url(logo/background.jpg);
background-repeat: no-repeat;
width: 900px;
height: 393px;
}
#left_content{
width: 268px;
height: 393px;
}
#left_content_top{
color: white;
margin-left: 5px;
width: 268px;
height: 239px;
}

#left_content_bottom{
color: white;
width: 268px;
height: 154px;
}

#right_content{
color: white;
height: 363px;
width: 524px;
}

 

HTML DIV code

<div id="content">
  <div id="left_content">
  <div id="left_content_top">
	  Left_top
	</div>                            <!-- End of Left top Content Div -->

	<div id="left_content_bottom">
	  Left_bottom
	</div>                           <!-- End of left bottom Content Div -->	
</div>                             <!-- End of Left Content Div -->

<div id="right_content">
  Right_all	
</div>                            <!-- End of Right Content Div -->

</div>                              <!-- End of Content Div -->

Link to comment
Share on other sites

i would use floats

body{
background-color: black;
}
#content{
margin: auto;
background-image: url(logo/background.jpg);
background-repeat: no-repeat;
width: 900px;
height: 393px;
}
#left_content{float:left;
width: 268px;
height: 393px;
}
#left_content_top{
color: white;
margin-left: 5px;
width: 268px;
height: 239px;
}

#left_content_bottom{
color: white;
width: 268px;
height: 154px;
}

#right_content{float:right;
color: white;
height: 363px;
width: 524px;
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.