I cant figure out what is wrong with my styles.
Hope someone could help me with this.
Code example:

<style type="text/css">
.maindiv {
    overflow:hidden; border:#000 1px solid;
    width:450px; min-height:250px;
}
.left_inner {
    float:left; width:200px;
    min-height:100%; background:#00CC33;
}
.right_inner {
    float:left; width:150px; background:#C93;
}
</style>
<div class="maindiv">
    <div class="left_inner">Left Block content</div>
    <div class="right_inner">Right block content<br />sample txt<br />sample txt</div>
</div>

The way it should be is like in Opera Browser (see image): Sample image

link|improve this question

25% accept rate
Are you open for other positioning (position:absolute)? – sharethis Jan 9 at 14:57
Using inline-block is not the best way to come across doing anything. Instead, use float: left; . – Aaron Brewer Jan 9 at 15:00
Do you have a doctype? – Mr Lister Jan 9 at 15:01
He's not trying to get the elements to position, he's trying to get them to "stretch" "100%". – Aaron Brewer Jan 9 at 15:01
@MrLister: If he doesn't, he can refer to this: w3schools.com/tags/tag_doctype.asp – Aaron Brewer Jan 9 at 15:02
show 3 more comments
feedback

2 Answers

Try this:

    <style type="text/css">
.maindiv {
    overflow:hidden; border:#000 1px solid;
    width:450px; height: auto; min-height:250px;
}
.left_inner {
    float:left; width:200px;
    min-height:100%; height: 100%; background:#00CC33;
}
.right_inner {
    float:left; width:150px; background:#C93;
}
</style>
<div class="maindiv">
    <div class="left_inner">Left Block content</div>
    <div class="right_inner">Right block content<br />sample txt<br />sample txt</div>
</div>

Most of the time you have to apply a height of auto or 100% to the parent DIV.

link|improve this answer
works also with pixel height for the outer div. – sharethis Jan 9 at 15:05
This didn't worked. – wzazza Jan 9 at 15:09
@sharethis: You cannot achieve a CSS RULE at 100% if you apply the value at a pixel-base. – Aaron Brewer Jan 9 at 15:11
I think he want to left inner div to be 100% of the outer (pixel-valued) div. – sharethis Jan 9 at 15:13
And yes the pixel height for the outer div works, but the content can be much more larger that height. Thats why I need min-height or height:auto but they work only in Opera – wzazza Jan 9 at 15:14
show 4 more comments
feedback

add

html,
body {
  height:100%
}

at the top of your css, that works for me

EDIT: my test :

<!DOCTYPE html>
<html>

<head>
<style>
html,
body {
height:100%;
}

.maindiv {
   overflow:hidden; border:#000 1px solid;
    width:450px; height:100%;
position:relative;
}
.left_inner {
    float:left; width:200px;
    min-height:100%; background:#00CC33;
position:relative;
}
.right_inner {
    float:left; width:150px; background:#C93;
}
</style>
</head>
<body>
<div class="maindiv">
<div class="left_inner">Left Block content</div>
<div class="right_inner">Right block content<br />sample txt<br />sample txt</div>
</div>
</body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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