Bootstrap drop down cutting off

前端 未结 6 1907
Happy的楠姐
Happy的楠姐 2020-12-03 14:09

I am trying to add a dropdown setting menu to my comments section in a project that I\'ve been working on.

The dropdown menu seems to cut itself off and I am not sure

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-03 14:47

    I had the same problem. After adding this lines, my dropdown worked just as I expected:

    @media (max-width: 767px) {
        .table-responsive .dropdown-menu {
            position: static !important;
        }
    }
    
    @media (min-width: 768px) {
        .table-responsive {
            overflow: visible;
        }
    }
    

    I found the solution here

提交回复
热议问题