我做了我的网站布局,就像在punker下。

plunker

.bottom_block {
  position: absolute;
  width: 100%;
  display: block;
  bottom: 0;
}


像上面的代码一样,它的左侧边栏具有底部代码块,但是它不起作用。
它不会坚持到底。
我如何坚持到底?

最佳答案

找到这条线

  <div class="bottom_block left-sidebar-down">


然后将其更改为

  <div class="bottom_block">


并转到您的style.css并找到bottom_block类并将其更改为

.bottom_block {
  position: fixed;
  bottom: 0;
  height: 600px;
  width: 300px;
  background-color: #996666;
}


应该为您工作。

07-24 09:47