My code:

<!DOCTYPE html>
<html>
<head>
    <title>Demo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
        body {
            background: none repeat scroll 0 0 #EFEFEF;
            overflow: hidden;
            position: relative;
            margin: 0px;
            padding: 10px;
        }
        div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
            margin: 0;
            padding: 0;
        }
        #content{
            height:200px;
        }
        fieldset,textarea{
            border: 0 none;
        }
        #LeftPanel
        {
            width: 48%;
            float: left;
            height:100%;
        }
        .window {
            border: 1px solid #ADADAD;
            width: 100%;
            float: left;
        }
        .top {
            height: 25%;
        }
        .bottom {
            height: 75%;
        }
        .code{
            width:100%;
            height:100%;
        }
    </style>
</head>
<body>
<div id="content">
    <fieldset id="LeftPanel">
        <div id="div_A" class="window top">
            <textarea id="code_A" class="code">A</textarea>
        </div>
        <div id="div_B" class="window bottom">
            <textarea id="code_B" class="code">B</textarea>
        </div>
    </fieldset>
</div>
</body>
</html>

It works well in Chrome, Firefox, IE8/IE9, but it doesn't work in IE6/IE7.

In IE6/IE7:

enter image description here

In Firefox:

enter image description here

Who can help me? Thanks!

link|improve this question

FYI ie6 is way too old, may be obsolete, and user's using ie7 is also very minor so giving support for them is not a best idea. – Harry Joy Jan 12 at 5:02
You can refer this URL for IE style virtuosimedia.com/dev/css/… – Murtaza Jan 12 at 5:04
1  
but in china,a large amount of users use ie6 – artwl Jan 12 at 5:05
1  
China and South Korea have the world's biggest user bases for IE6. In China the reason is software piracy (OS with included browser), in SK it's legacy software for identifying yourself on the internet. Wake up @HarryJoy, it's not cool to ignore your target audience. If your audience uses IE6, you'd better code for IE6. – nikc.org Jan 12 at 5:20
@nikc.org: OOPS!! seems like I should search the net before commenting. ;p – Harry Joy Jan 12 at 5:30
feedback

3 Answers

Set the containing element's height to 100%. IE6/7 sets the height based on the parent's height.

link|improve this answer
thanks your answer,but it does't work – artwl Jan 12 at 5:03
feedback

This is a solution works in IE7/8, but not IE6 (I just put CSS here).

Actually, for IE6, the you cannot use "height:100%". The bug can be found here: Textarea 100% height in IE

    body {
        background: none repeat scroll 0 0 #EFEFEF;
        overflow: hidden;
        position: relative;
        margin: 0px;
        padding: 10px;
    }
    div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
        margin: 0;
        padding: 0;
    }
    #content{
        height:200px;
        position:relative;
    }
    fieldset,textarea{
        border: 0 none;
    }
    #LeftPanel
    {
        width: 48%;
        float: left;
        height:100%;
        position:relative;
    }
    .window {
        position:relative;
        border: 1px solid #ADADAD;
        width: 100%;
        float: left;
    }
    .top {
        height: 25%;
    }
    .bottom {
        height: 75%;
    }
    .code{
        width:100%; 
        height: 100%;
    }
link|improve this answer
thanks your answer,but it don't work I found it ,when i add cols and rows property to Textarea,it work fine – artwl Jan 12 at 5:31
The problem occur, because for any browser, it is necessary for child elements to find its parent to determine its size and location. So, adding "position:relative" to its parent will solve the problem. But for IE6, since textarea contains bugs, there could be no solution to solve the problem. – Davidsun Jan 12 at 5:40
feedback
up vote 0 down vote accepted

I found it ,when i add cols and rows property to Textarea,it work fine:

<!DOCTYPE html>
<html>
<head>
    <title>Demo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
         body {
            background: none repeat scroll 0 0 #EFEFEF;
            overflow: hidden;
            position: relative;
            margin: 0px;
            padding: 10px;
        }
        div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
            margin: 0;
            padding: 0;
        }
        #content{
            height:200px;
        }
        fieldset,textarea{
            border: 0 none;
        }
        #LeftPanel
        {
            width: 48%;
            float: left;
            height:100%;
        }
        .window {
            border: 1px solid #ADADAD;
            width: 100%;
            float: left;
        }
        .top {
            height: 25%;
        }
        .bottom {
            height: 75%;
        }
        .code{
            width:100%; 
            height: 100%;
        }
    </style>
</head>
<body>
<div id="content">
    <fieldset id="LeftPanel">
        <div id="div_A" class="window top">
            <textarea rows="20" cols="40" id="code_A" class="code">A</textarea>
        </div>
        <div id="div_B" class="window bottom">
            <textarea rows="20" cols="4" id="code_B" class="code">B</textarea>
        </div>
    </fieldset>
</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.