1

DIV 内にテキスト ボックスがあり、div の外にボタンがあります。両方 (テキスト ボックスとボタン) が同じ行にある必要があります。Internet Explorer では、両方が同じ行に表示されます。しかし、Mozilla では、ボタンは次の行に来ます。スクリーンショットを添付します。

画像: Mozilla で表示 IE で表示

aspx/HTML コード:

<div class="fileInputs">
<asp:FileUpload class="hiddenFile" ID="fucAttachment" runat="server" onmouseout="copyContents('fucAttachment');" />
<div class="visibleField">
    <input type="text" readonly="readonly" id="visibleAttachmentField" style="width: 158px; height: 18px; margin-left: -4px;" />
</div>
<input type="button" class="browseBtn" value="Browse"/>

CSS:

 div.fileInputs
    {
        position: relative;
        z-index: 0;
    }
    .hiddenFile
    {
        position: relative;
        text-align: right;
        -moz-opacity: 0;
        filter: alpha(opacity: 0);
        opacity: 0;
        z-index: 2;
        width: 220px;
        /*cursor: pointer; cursor: hand; */
    }
    .visibleField
    {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        margin-left: 4px;
        display: inline-block;            
    }
    .browseBtn, .uploadBtn
    {
        cursor: pointer;
        float: RIGHT;
        position: ABSOLUTE;
        margin-left: -60PX;
        height: 20px;
        font-size:12px;
        font-family: Arial;
        padding-left: 6px; 
        padding-right: 6px;
        border:1px solid #768ea5; 
        background-image: none;
        background-color: rgb(214,211,206);
    }
4

1 に答える 1