Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 jquery ui 开发页面。一切看起来都很好,除了在菜单>饮料部分下,最后一个定义列表显得不合适。第一个单独出现在中间的一排,而最后一个单独出现在左侧的一排。你可以在这里查看。
看起来不错,因为您将它们全部浮动。这就是我期望发生的事情。如果您希望它们在超出 div 的宽度时能够下拉到下一行,请将 dl CSS 更改为:
dl{ display:inline-block; vertical-align:top; padding-right: 10px; }
jsbin 示例