程序代码:
<html> <head> <style type="text/css"> html { width:900px; height:700px; } body { width:900px; height:700px; margin:0px; } .divRow { width:900px; min-height:100px; height:auto; } .divCol { height:500px; float:left; } </style> </head> <body> <div class="divRow"> </div> <div class="divRow"> <div style="width:100px;" class="divCol"> </div> <div style="width:700px;" class="divCol"> </div> <div style="width:100px;" class="divCol"> </div> </div> <div class="divRow"> </div> </body> </html>