Create a Fixed-to-bottom navbar in bootstrap that slides content upwards when toggled

后端 未结 3 1981
野性不改
野性不改 2020-12-31 06:26

I am having two navbars on my website, one in header and other in Footer

Header part working fine, but what i want is that footer should be similar to navbar, but, w

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-31 07:07

    Fix Skelly solution.

    Add one more CSS:

    @media screen and (max-width: 768px) {
      footer .navbar-collapse {
        position: absolute;
        bottom: 70px;
        width: 100%;
        background-color: #303030;
      }
    }
    

    http://www.bootply.com/4b6cSUMTzg

提交回复
热议问题