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.
我有一组可调整大小的 div 可以动态地添加内容。我的问题是 div 内的内容会溢出到盒子的尺寸之外。
我不想使用溢出:自动,而是始终确保 div 足够大以容纳其中的内容,以便无法将其调整为更小。
jQuery 是否提供了一些简单的方法来做到这一点?
当前代码如下
$(this).draggable().resizable( { minWidth: 200, minHeight: 150, maxWidth: 600, maxHeight: 450, });