我有一个包含iframe的简单页面. iframe包含一个带有一些div的页面.当我打开嵌入式页面时,它工作得很好.应该溢出的div溢出.但是当我打开集装箱的地方不是.以下是我的代码:
集装箱页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <Meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <style type="text/css"> #content{ margin: auto; width: 500px; height: 1000px; background: green; } #frame{ width:202px; height:302px; overflow: visible; } </style> </head> <body> <div id="content"> <iframe id="frame" src="http://localhost:8080/webApp/view/test/embeddable.html" scrolling="no" frameborder="0" allowTransparency="true" marginheight="0" marginwidth="0"> </iframe> </div> </body> </html>
可嵌入页面:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <style type="text/css"> body { width: 200px; height: 300px; overflow: visible; border: 1px solid yellow; } #id1{ margin: auto; width: 500px; height: 10px; border: 1px solid white; background: red; margin-top: 20px; } </style> </head> <body> <div id="id1"></div> </body> </html>
id1应该溢出,但不是.我将所有重要的div的“overflow”属性设置为“visible”(即使是默认值).我不知道我做错了什么