css替代框架?
我想做一个网页,左边固定宽度,右边显示另外的网页。 
 如果用框架就很简单,现在想用css。 
 具体要求: 
          左边固定宽度,比如200px 
          右边自适应,如果分辨率1024*768,则在右边的824px里面显示另外的网页 
                                              如果分辨率1280*800,   则在右边的1080px里面显示另外的网页。 
                                              右边的网页需要宽度100%显示,不能有横向的滚动条。   
 请问该怎么实现?谢谢。
------解决方案-------------------- <!DOCTYPE html PUBLIC  "-//W3C//DTD XHTML 1.0 Transitional//EN "  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">  
  <html xmlns= "http://www.w3.org/1999/xhtml ">  
  <head>  
  <title> ssssssssss </title>  
  <style type= "text/css ">  
 .area_left{ float:left;width:200px;} 
 .area_right{ margin:0 00 200px;} 
  </style>  
  </head>  
  <body>  
  <div class= "area_left "> 左侧 </div>  
  <div class= "area_right "> 右侧 </div>  </body>  
  </html>