<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .box{ width: 200px; height: 200px; border:10px solid black; } .content{ width: 400px; height: 400px; background: red; } </style> </head> <body> <div class="box"> <div class="content"></div> </div> </body> </html>
IE6下效果
其他浏览器下效果
解决方案:编写代码时,尽量使子级元素宽高小于父级
时间: 2024-10-17 07:35:47