0

滑动工作小提琴但滚动前的宽度不正确在这里正确的布局,但这里没有滚动功能。仍在学习 CSS,但由于某种原因,如果我删除了以下固定浮动侧 CSS:

#commentWrapper { 
  position: absolute;
  margin-left: 35px;
  left: 450px;
  width: 280px;
}

#comment {
  position: absolute;
  top: 0;
  /* Can include margins in the sliding effect here */
}

#comment.fixed {
  position: fixed;
  top: 0;
}

,侧面的位置是正确的,但是当您向下滚动时,它不会停留在其固定位置。保留代码,由于某种原因,CSS会减小侧面的宽度,但是一旦向下滚动,它就会变得正常。如何修复它以使其以正确的位置和宽度加载到一侧?

4

1 回答 1

1

我更新了你的 CSS。 看一看。我希望这可以解决您的问题!

我更改的相关代码:

新的:

#commentWrapper { 
float:right;
margin-left: 10px;
margin-right: 10px;
left: 450px;
width: 25%;
}

老的:

#commentWrapper { 
    position: absolute;
    margin-left: 35px;
    left: 450px;
    width: 280px;
}
于 2012-06-19T22:05:23.550 回答