Created
October 3, 2019 18:29
-
-
Save jessicahawkins3344/b4b4a17c86d69324c25ade337f5f5c27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="form-group "> | |
<label>Left & Right Button Dropdown</label> | |
<div class="input-group"> | |
<input type="text" class="form-control" aria-label="Text input with dropdown button"><div class="input-group-append"> | |
<button type="button" class="btn btn-label-success dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
Action | |
</button> | |
<div class="dropdown-menu"> | |
<a class="dropdown-item" href="#">Action</a> | |
<a class="dropdown-item" href="#">Another action</a> | |
<a class="dropdown-item" href="#">Something else here</a> | |
<div role="separator" class="dropdown-divider"></div> | |
<a class="dropdown-item" href="#">Separated link</a> | |
</div> | |
</div> | |
<div class="input-group-append"> | |
<button type="button" class="btn btn-secondary dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
Action | |
</button> | |
<div class="dropdown-menu"> | |
<a class="dropdown-item" href="#">Action</a> | |
<a class="dropdown-item" href="#">Another action</a> | |
<a class="dropdown-item" href="#">Something else here</a> | |
<div role="separator" class="dropdown-divider"></div> | |
<a class="dropdown-item" href="#">Separated link</a> | |
</div> | |
</div> | |
</div> | |
<span class="form-text text-muted">Some help content goes here</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment