bootstrap 2.3.2 navbar inside elements become invisible after first collapse only on Chrome mobile

前端 未结 1 1094
臣服心动
臣服心动 2021-01-19 07:58

i have this very strange problem with bootstraps navbar 2.3.2.

this problems also happens on their official page:

http://getbootstrap.com/2.3.2/examp         


        
相关标签:
1条回答
  • 2021-01-19 08:38

    I have fixed the issue:

    inside bootstrap-responsive.css:

    @media (max-width: 480px) {
      .nav-collapse {
        -webkit-transform: translate3d(0, 0, 0);
      }
    .
    .
    .
    .
    }
    

    just delete this rule inside the max-width: 480px.

    :)

    0 讨论(0)
提交回复
热议问题