Killzerman
Killzerman

Reputation: 323

bootstrap drop-down-toggle misaligned row

I'm having a prolem with the row loading odd and bigger than the previous row

Here's a fiddle (click name)

you can see it's loading the scroll bar odd

I want the drop to expand smoothly so it ends up inline with the above rows sorta like

title
----------------------------------------
|title                     |Length|Best|
----------------------------------------
|name                      |  10  | Y  |
----------------------------------------
|words                                ^|
|                                     ||
| more words                          V|
----------------------------------------

Upvotes: 1

Views: 69

Answers (1)

Felix Manuel
Felix Manuel

Reputation: 24

Simple fix just add col-sm-12 to row collapse

<div id="description" class="row collapse col-sm-12">
      <div class="list-group-item col-sm-12 scrollDiv">
        <div contenteditable="true" onblur="">Words</div>
      </div>
    </div>

Upvotes: 1

Related Questions