Auto fit iframe
- by kevin
I have a difficulty on design a web page layout.
This is my layout structure.
<style>
#left
{
float:left;
width:600px;
min-height:400px;
}
#right
{
float:right;
width:200px;
min-height:400px;
}
</style>
<body>
<center>
<div id="page">
<div id="left">
<iframe />
</div>
<div…