我创建了一个引导模式窗口,其中放置了一个 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 + "');
}