iframeを配置したブートストラップモーダルウィンドウを作成しました。
行流体ブートストラップクラスを利用しようとすると、すべての行が互いに重なり合っています。
これは、GoogleChromeではなくFirefoxでのみ発生します。
提案をお願いします。
<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 + "');
}