为什么middle上面有空白?
<<!DOCTYPE html> <html> <meta charset="utf-8"> <head> <title>lianxi</title> <style type="text/css"> body{margin: 0;padding:0;} .left{ position: absolute; width: 200px; top:0;left: 0; background: #ccc; height: 500px; } .mid{ height: 500px; margin: 0 310px 0 210px; background: black; top:0; } .right{ height: 500px; position: absolute; width: 300px;top:0; right: 0; background: #ccc; } </style> </head> <body> <div class="left">left</div> <div class="mid"></div> <div class="right">right</div> </body> </html>
如图