vote up 0 vote down star

I have 2 divs: one in the left side and one in the right side of my page. The one in the left side has fixed width and I want the one of the right side to fill the remaining space.

The one on the right side is the navigation and I want it to to fill the remaining space on it right side:

My CSS:

#search {
    width: 160px;
    height: 25px;
    float: left;
    background-color: #FFF;
}

#navigation {
    width: 780
    float: left; 
    /*background-color: url('../images/transparent.png') ;*/
    background-color: #A53030;
}

My Html:

<div id="search">

</div>
<?php include("navigation.html"); ?>
<div id="left-column">

Thank in advance!

flag

Remove the width and float property on the #navigation and it will work. – Johan Leino Jun 23 at 14:40

1 Answer

vote up 1 vote down check

This seems to accomplish what you're going for.

<html>

<head>
	<title>This is My Page's Title</title>
	<style type="text/css">
		#left {
			float:left;
			width:180px;
			background-color:#ff0000;
		}
		#right {
			width: 100%;
			background-color:#00FF00;
		}
	</style>
</head>

<body>
	<div>
		<div id="left">
			left
		</div>
		<div id="right">
			right
		</div>
	</div>
</body>

 </html>
link|flag
You have to remove the width: 100% on the right div though to make it work. – Johan Leino Jun 23 at 14:39
I just copy and pasted that code out of a page i tested it on... the 100% works. – Boushley Jun 23 at 14:59
At least in chrome it does. – Boushley Jun 23 at 15:01
thanks!! in never used %s before i think they are the key for flexibility – janoChen Jun 23 at 17:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.