HTML - 两个div并排

时间:2014-04-15 16:57:01

标签: html css

我需要并排获得两个div,而其中一个居中,另一个固定。我已经把它们并排了。

问题在于,当绿色div的浮动是正确的时,我不能使它的位置固定。因此,当我滚动时,它不会留在屏幕上。

Problem

抱歉颜色:)仅供测试。

#Body {
    margin: 0 auto;
    width: 800px;
    background: #000;
}

#pinkdiv{
    position: relative;
    background: #F09;
}

#greediv{
    position: fixed;
    float:right;
    width:250px;
    background: #0F0;
}

任何帮助?

4 个答案:

答案 0 :(得分:2)

您不能在固定元素上使用float。相反,您需要像其他人所建议的那样使用right: 0。如果您希望绿色元素一直位于右上角,则还需要添加top: 0

Demo

#greediv{
    position: fixed;
    right: 0;
    top: 0;
    width:250px;
    background: #0F0;
}

答案 1 :(得分:1)

而不是float:right,而不是您发现的固定位置,请设置right:0

答案 2 :(得分:1)

你可以通过javascript实现:

if(window.scrollTop() > 0){
  document.getElementById('elementId').style.position="fixed";
}

这将在您滚动时修复div位置。

答案 3 :(得分:1)

浮动元素会将其从文档流中取出,如果要使用固定定位,则必须使用right:0;

将div置于右侧