我想制作固定内容和滚动背景的页面?

时间:2016-09-26 12:31:11

标签: javascript jquery frontend web-frontend

您好我想制作包含固定内容的网页,并像这边http://hellomonday.com/滚动背景如何制作?

1 个答案:

答案 0 :(得分:2)

您需要使用"位置"属性并将其设置为"固定"。 这是一个例子。



<div  style="width:200px; height:200px; border:1px solid; overflow:scroll;">
  <div style = "width:180px; height:50px; border: 1px solid; position:fixed;">
    abc
  </div>

  <div style = "width: 180px; height:250px; border: 1px solid; margin-top:60px;">
    123
  </div>
</div>
&#13;
&#13;
&#13;