iframe似乎打破了css布局

时间:2018-09-04 05:22:34

标签: html css iframe

谁能说出为什么这是错误的?我认为黄色的div会像粉红色的div一样遍及整个页面。但是当我看它的时候-不,黄色的div排列在图片下方,而不是整个长度。

var helper = MockRepository.Mock<IDBHelper>();

https://silib2.net/eResources/scripts/carousel/form.htm

这可能是愚蠢的吗?

3 个答案:

答案 0 :(得分:0)

请尝试以下操作:-

<div style=width:100%;background:pink>
    fjadlskjfdsf dslkfsda sdjkfh
</div>
<div style="width:100%;background:red; clear: both; overflow: hidden;">
    <div style=width:60%;float:left>
        <img src=Library_left.jpg width=100%>
    </div>
    <div style=width:40%;float:right>
        <iFrame scrolling="no" frameborder="0" width="100%" height="100%" src="https://silib2.net/eResources/scripts/carousel/carousel.php">&nbsp;</iFrame>
    </div>
</div>
<div style="width:100%;background:yellow; clear: both; overflow: hidden;">
    <h1 style=text-align:center>adslkjfasdlkjf</h1>
why is this div not wider?
</div>

答案 1 :(得分:0)

iframe的静态高度可以解决您的问题

<iframe scrolling="no" frameborder="0" width="100%" height="165px" src="https://silib2.net/eResources/scripts/carousel/carousel.php">&nbsp;</iframe>

答案 2 :(得分:0)

您需要为iframe设置一个较小的高度,该高度大约为

    height: 225px;

您需要提供将其包裹的div [上面有红色背景的

  clear:both; Overflow:hidden;