0

我有如下引导弹出窗口

<div style="float:left; width:30%"></div>
<div class="popover results" style="z-index:1060; float:left; width:70%">
     <div class="arrow"></div>
        <div class="popover-inner">
        <h3 class="popover-title"></h3>
        <div class="popover-content">
        <p></p>
    </div></div>
</div>

我看到随着屏幕分辨率的变化,它与我拥有的输入元素的相对位置发生了变化。无论分辨率如何,我都想保持弹出框和输入元素的相对位置相同。有没有办法做到这一点?

4

1 回答 1

0

发生这种情况是因为我在上面的代码中使用了以下内容

<div style="float:left; width:30%"></div>

我删除了它,它现在自动正确调整

于 2015-11-11T14:48:05.993 回答