动态调整div大小
我正在制作我的作品集,并且将其全部制作在一个基于 JavaScript 的页面上。我的问题是,如果我加载到不同的页面,包含页面内容的 div 不会调整大小。
http://portfolio.theadamgaskins.com/Portfolio/ 点击“死亡蠕虫”即可明白我的意思。
那么,如何使 div 垂直调整大小以适应其内容呢?
I'm working on my portfolio, and I'm making it all on one page, javascript based. My problem is, if I load in a different page, the div containing the content of the page doesn't resize.
http://portfolio.theadamgaskins.com/Portfolio/ Click "Death Worm" to see what I mean.
So, how do I make a div resize vertically to fit its content?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
jQuery 有很好的工具可以让你调整任何你想要的大小: http://api.jquery.com/resize/
虽然您没有明确设置
#pageContent
高度 - 我认为无论 curvyCorners 是什么 - 都会jQuery has nice tools to let you resize whatever you want: http://api.jquery.com/resize/
Although you don't explicitly set the
#pageContent
height - I think whatever curvyCorners is - does您的
div
id 的pageContent
有一个高度。Your
div
id'dpageContent
has a height.应该是默认的。使用带有 Firebug 扩展的 Firefox 或 Google-chrome 来调试动态页面,并使用右键单击“检查元素”功能。
It should by default. Use Firefox with the Firebug extension, or Google-chrome, to debug dynamic pages, using the right-click "inspect element" feature.