PHPフォームを処理した後、左の列を右の列と同じ高さにしたいです。これはhtmlコードです:
<div class="header">
</div>
<div class="container">
<div class="left">
</div>
<div class="right">
</div>
</div>
<div class="footer">
</div>
cssの設定を教えてください!
.header, .footer{
text-align: center;
background-color: #777;
color: white;
border-style: dotted;
border-width: 1px;
border-color: black;
width: 100%;
}
.footer{
text-align: center;
line-height: 100%;
float: left;
height: 5%;
margin-bottom: 3px;
}
.left{
border-style: dotted;
border-width: 1px;
border-color: black;
background-color: #CCC;
float: left;
width: 11%;
min-height: 500px;
margin: 2px 0px 2px 0px;
padding: 0px 0px 0px 0px;
height: 100%;
}
.right{
border-style: dotted;
border-width: 1px;
border-color: black;
width: 88%;
float: right;
min-height: 500px;
margin: 2px -2px 2px 8px;
padding: 0px 0px 0px 0px;
height: 100%;
}
私は言語php / html / cssが初めてです。
他のトピックを見てきましたが、解決策はどれもうまくいきませんでした。
CSSを設定しましたが、IEでしか機能しませんでした。Chrome と FF は機能しませんでした。
ああ、これを動的に動作させたい。px の高さ制限なし。%のみ。
手伝って頂けますか?