Reputation: 323
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
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