我有以下内容:http://jsfiddle.net/FCKvk/
当您从另一个列表中的某个列表中提取图像时,它会突出div的高度,我不希望这样!
当图片在一个列表中超过4时,我想要这样的内容:
http://jqueryui.com/slider/#side-scroll
$(function(){
$( "#sortable1, #sortable2" ).sortable({
connectWith: ".connectedSortable"
}).disableSelection();
});
怎么做?感谢
答案 0 :(得分:0)
将white-space: nowrap
添加到容器中:
#sortable1, #sortable2 {
list-style-type: none;
margin: 0;
padding: 0 0 2.5em;
margin-right: 10px;
white-space: nowrap;
}