选项卡无法正确调整可排序的大小
I have the following script:
http://jsfiddle.net/oshirowanen/mYx5y/3/
Why is the height of the tab which contains the sortable elements not resizing it's height properly to contain all the sortable elements?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项卡中的列元素是浮动的,并且需要清除,因此选项卡 div 的高度合适。
快速修复就是使用clearfix。使用以下 css:
并给 id="tabs" 的 div 一个 class="clearfix"
The column element within the tabs are floated and needs a clear after so the tabs div is the right height.
A quick fix would just be to use clearfix. use the following css:
and give the div with id="tabs" a class="clearfix"