0

我创建了一个引导模式窗口,其中放置了一个 iframe。

现在,当我尝试使用 row-fluid bootstrap 类时,所有行都位于彼此之上。

这仅发生在 Firefox 中,而不发生在 google chrome 中。

请提出建议。

<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" >
<div id="myModalBody" class="modal-body">
    <button type='button' class='close' data-dismiss='modal' aria-hidden='true'></button>
    <h3 id='myModalLabel'>Profile</h3>
    <iframe id='profile'  width='99.5%' height='94%' style='border-width: 0;' scrolling='no'></iframe>
</div>



 function setprofile(id)
{
    profileid=id;

    $('#profile').attr('src','profile.php?profileid=" + profileid + "');

}
4

1 回答 1

0

我有一个类似的问题,并发现我使用了错误的元素。这是我的问题和解决方案iframe 中的引导代码未正确呈现

于 2013-04-13T08:11:48.113 回答