div后面的元素进入Mozilla firefox的下一行

时间:2013-11-04 11:14:20

标签: html css firefox

我在DIV&中有一个文本框。 div外面的按钮。我需要两个(文本框和按钮)在同一行。在Internet Explorer中,两者都在同一行。但是,在Mozilla中,按钮即将进入下一行。附上截图。

图片: Viewed in Mozilla Viewed in IE

aspx / HTML code:

<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);
    }

1 个答案:

答案 0 :(得分:0)

为什么不把按钮放在div里面。

将两个输入向左浮动。如果您的容器div将被定位为绝对值,则您还需要为容器div提供宽度。

如果你需要文本/输入不可见只是目标而不是整个div。