0

私は1つのdivを持っており、そのdivの下に同じページにhtmlページを動的にロードするiframeで1つのdivを表示しています。 .so 誰でも、iframe にロードされたコンテンツに関係なく、iframe を含む div を上部の div タグの下に配置する方法を教えてください。また、クロムとモジラで同じように見せたい..

以下は私の構造です...

<div class="row-fluid">
    <div class="span3" id="media_select">
            <label
                style="float: left; padding-top: 5px; padding-bottom: 10px; padding-right: 10px; padding-left: 22px">  Media  
            </label><select style="width:125px" name="mediatype" id="mediatype"
                data-placeholder="- Select Ad Type -" class="chzn-select"
                tabindex="4">
                <option value="0">Select All</option>
                <%
                    List<mediatype> media_typelist = mediatypeLocalServiceUtil
                            .getAllMediaType();
                    for (mediatype media_typelistitem : media_typelist) {
                %>
                <option value=<%=media_typelistitem.getPrimaryKey()%>><%=media_typelistitem.getMedianame()%></option>
                <%
                    }
                %>
            </select>

        </div>
        <div class="span3">


        </div>

//これは、上のディビジョンのすぐ下に固定したい div です

<div class="bordercolor" id="mydiv" style="display: none; text-align: center">

    <IFRAME SRC="" id="reportpreview"  style="text-align: center;"
        marginheight="0" frameborder="0" onLoad="sizeFrame();"></iframe>

</div>

次のスクリプト内で動的に割り当てられた iframe の高さ:-

function sizeFrame() {
    var F = document.getElementById('reportpreview');
    if(F.contentDocument) {
    F.height = F.contentDocument.documentElement.scrollHeight+30; //FF 3.0.11, Opera 9.63, and Chrome
    } else {



    F.height = F.contentWindow.document.body.scrollHeight+30; //IE6, IE7 and Chrome

    }

    }

///レポート プレビュー ID の css //iframe

   #reportpreview {
        float:center;
        margin-top:10%;
        margin-bottom:10%;
        zoom: 1.2;
        -moz-transform: scale(1.2);
        -moz-transform-origin: 2 0;
        -webkit-transform: scale(1.2);
        -webkit-transform-origin: 2 0;
        width: 720px;
        min-height: 37px;



    }
4

1 に答える 1

1
   #reportpreview {
    clear:left;
    float:center;
    margin-top:10%;
    margin-bottom:10%;
    zoom: 1.2;
    -moz-transform: scale(1.2);
    -moz-transform-origin: 2 0;
    -webkit-transform: scale(1.2);
    -webkit-transform-origin: 2 0;
    width: 720px;
    min-height: 37px;
    }   

clear:leftiframe div に追加

于 2013-01-22T05:22:06.600 に答える