Bootstrap: Dropdown cut off in responsive table

Created on 15 Dec 2014  路  3Comments  路  Source: twbs/bootstrap

dropdown-cut-off

Using v3.3.1 with the following code:

<div class="table-responsive">
        <table class="table table-striped">
          <thead>
            <tr>
              <th>Action</th>
              <th>Name</th>
              <th>Organization</th>
            </tr>
          </thead>

          <tbody>
              <tr>
                <td>
                  <!-- Split button -->
                  <div class="btn-group">
                    <button type="button" class="btn btn-default"><i class="fa fa-check-circle fa-lg text-success"></i> Test</button>
                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">
                      <span class="caret"></span>
                      <span class="sr-only">Toggle Dropdown</span>
                    </button>
                    <ul class="dropdown-menu" role="menu">
                      <li><a href="#">Test &amp; Deploy</a></li>
                      <li><a href="#">Deploy</a></li>
                      <li><a href="#">Build</a></li>
                      <li class="divider"></li>
                      <li><a href="#">Disable</a></li>
                    </ul>
                  </div>
                </td>

                <td>
                  Name
                </td>

                <td>
                  Org
                </td>
              </tr>
          </tbody>
        </table>
      </div>
css

Most helpful comment

Just make some changes in css file i.e

.table-responsive{
overflow-y:visible;
overflow-x:visible;
}

All 3 comments

Approximate duplicate of #11037. Closing in favor of #15288.

Just make some changes in css file i.e

.table-responsive{
overflow-y:visible;
overflow-x:visible;
}

Define this properties for Bootstrap 4.

data-toggle="dropdown" data-boundary="window"

Was this page helpful?
0 / 5 - 0 ratings

Related issues

iklementiev picture iklementiev  路  3Comments

eddywashere picture eddywashere  路  3Comments

andyyou picture andyyou  路  3Comments

fohlsom picture fohlsom  路  3Comments

IamManchanda picture IamManchanda  路  3Comments