<!DOCTYPE html> <html> <head> <title>ceshi</title> <style> *{ margin: 0; padding: 0; } #wrap{ width:1002px; background:gray; } .header{ height: 120px; } .main{ background: green; } .main .left{ width:700px; height: 600px; float: left; background: black; } .main .right{ width:302px; height: 600px; float: left; background: yellow; } .footer{ height: 120px; background: blue; } </style> </head> <body> <div id="wrap"> <div class="header"></div> <div class="main"> <div class="left"></div> <div class="right"></div> </div> <div class="footer"></div> </div> </body> </html>
刚毅87