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 的内容取决于列表中的选定项目,并使用 javascript 填充。我想让 div 将手风琴拉伸到它的内容我不是指滚动条,我是指改变 div 的宽度和高度。
我应该使用 javascript 还是可以使用 CSS ?
正如谢尔盖所说,您可以在 div 上设置 display: inline 来实现这一点。
div{ display: inline; }
http://jsfiddle.net/Qf9a8/