我得到了这个代码:
<div id="resizeDiv"><div id="title">Lol</div><div id="content"><iframe src='todo.php' height='100%' width='100%' frameborder='0px'></iframe></div></div>
这是CSS:
#title{
height: 25px;
width: 100%;
background: #c0c0c0;
border-bottom: 1px solid #999;
}
#content{
margin-bottom: 25px;
}
我使用 jquery 来允许调整框的大小。但 iframe 开箱即用 25px。我试过:
margin-bottom: 25px;
但这不起作用有没有人知道我做错了什么?