![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Web Design & Programming Discussion of web design, and server-side & client-side scripting |
![]() |
|
|
Thread Tools |
|
|
#1 (permalink) |
|
Registered User
Join Date: Nov 2005
Posts: 1
OS: XP
|
DIV's & CSS
Ok, here's a snippet of my coding I'm having trouble with.
What I want to be able to do is have the DIV's act as tables and be the same height. So the whole "wrap" section has the same background color. And, no a fixed height isn't good either. I want the left column to always the same height as the right column, and vice versa. The HTML Code:
<div align="center"> <div id="wrap"> <div id="content"> bla bla bla bla bla (it's the left column) </div> <div id="menu"> bla bla bla bla bla (it's the right column. Clever filller, eh?) </div> </div> </div> Code:
#wrap {
width: 690px;
background: #fff;
color: 000000;
}
#content {
background: #fff;
padding: 10px;
float: left;
width: 450px;
color: 000000;
}
#menu {
background: #fff;
float: right;
padding: 10px;
width: 200px;
color: 000000;
}
|
|
|
|
![]() |
| Thread Tools | |
|
|