jQuery 可排序连接列表内联

发布于 2024-10-29 14:44:23 字数 355 浏览 3 评论 0原文

我在这里指的是这个链接: sortable

我想使这些项目内联,我已经将 css 中的显示更改为

#sortable1 li, #sortable2 li  

display:inline;

但随后所有内容都被打乱,并且我的项目飞向右侧,即使我设置了 500px 的 div 包装器 - 它们飞出该区域。

有人有一些好的建议来处理这个问题吗?

谢谢。

I'm referring to this link here: sortable

I want to make these items inline, and I've changed the display of the

#sortable1 li, #sortable2 li  

to

display:inline;

in the css, but then all gets scrambled and my items fly off to the right, even though I have div wrapper set which is 500px - they fly out of that area.

Has anyone some good tips to handle this?

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹沉浮 2024-11-05 14:44:23

尝试将你的CSS更改为:

#sortable1, #sortable2 {
    margin: 0 10px 0 0;
    padding: 0;
}

#sortable1 li, #sortable2 li {
    display: inline;
    font-size: 1.2em;
    margin: 0 5px 5px;
    padding: 5px;
    width: 120px;
}

Try changing your css to:

#sortable1, #sortable2 {
    margin: 0 10px 0 0;
    padding: 0;
}

#sortable1 li, #sortable2 li {
    display: inline;
    font-size: 1.2em;
    margin: 0 5px 5px;
    padding: 5px;
    width: 120px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文