我不能让内部div(使用Hello World)适合此代码示例中的“Box”div(也在
http://www.toad-software.com/test.html).
尽管身体设置为100%,但内部div不会被包含!这是一个较大项目的测试用例,其中可变宽度表超出其容器的边界.该表将位于内部div中,容器将位于“Box”中.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style type="text/css"> /*html { width: 100%; height: 100%; position: relative; background: #c0c0c0; } body { position: absolute; width: 100%; height: 100%; background: #f9f9f9; }*/ body,html { margin: 0; padding: 0; } body { width: 100%; } div.Box { padding: 10px; background: #ff33ff; } </style> </head> <body> <div class="Box"> <div style="width: 1500px; height: 900px; background: #f12;">Hello World</div> </div> </body> </html>