Advertisement

06.25.2008 at 09:48AM PDT, ID: 23515279
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.3

3 Column CSS Layout (fluid width - fixed width - fluid width) Body Height 100%

Asked by ChimneySupply in Cascading Style Sheets (CSS)

Tags: ,

I'm having a problem with my CSS layout. I am trying to do a simple 3-column layout with a left-center-right design. Left column has a fluid width. Center column has a fixed width of 800px. Right column has a fluid width.

In my design, the center div will have a varying height depending on the page. I need the other two columns (left and right) to set themselves to be 100% of the height of the center column at all times. So, if the content within the center column changes, the left and right column should adjust to be 100% height of the center column.

I have tried to put height: 100% in the body tag, but this does not work. The only way I can get it to work is by specifying a static height for the center column (height: 800px).


My question:
Assuming that my center div will constantly change height, what is the best way to have my left and right columns automatically adjust themselves to the height of the center column?

Please see my complete page css below.

Thank you in advance for any help you may be able to offer!

=)






Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>html</title>
<style type="text/css">
body {
	/*height:800px;*/
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
#col_left {
	height:100%;
	width: 49.9%;
	margin-right: -400px;
	float: left;
 
}
#col_left .liner {
	height:100%;
	background-color:#E4E2D8;
	background-image:url(images/background_left1.gif);
	background-repeat:repeat-y;
	background-position:right;
	margin-right: 400px;
	border-right: solid 1px #000000;
}
#col_right {
	height:100%;
	width: 49.9%;
	margin-left: -400px;
	float: left;
}
#col_right .liner {
	height:100%;
	background-color:#E4E2D8;
	background-image:url(images/background_right1.gif);
	background-repeat:repeat-y;
	background-position:left;
	margin-left: 400px;
	border-left: solid 1px #000000;
}
#col_center {
	height:100%;
	width: 800px;
	float: left;
	border-bottom: solid 1px #000000;
}
 
</style>
</head>
<body>
 <div id="col_left">
   <div class="liner">Left (fluid width)</div>
</div>
 <div id="col_center">
       Center- (static: 800 pixels wide)
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
         <br />
 </div>
<div id="col_right">
   <div class="liner">Right (fluid width)</div>
</div>
</body>
</html>
 
Loading Advertisement...
 
[+][-]06.25.2008 at 11:44AM PDT, ID: 21868641

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Cascading Style Sheets (CSS)
Tags: css, safari IE Webkit Firefox
Sign Up Now!
Solution Provided By: Ray_Paseur
Participating Experts: 1
Solution Grade: B
 
 
[+][-]07.02.2008 at 07:20AM PDT, ID: 21916643

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628