两侧 div 和 100% 高度的问题
警告,该页面包含一些 NSFW 图像。
我试图使左侧 div 宽度为 300px,右边的一个是页面的其余部分。
我终于弄清楚如何让它们像那样彼此相邻,但是 我使用的修复使高度变得很奇怪。
HTML 和CSS: http://pastebin.com/tggteQWg
有什么建议/想法吗?
Warning, the page contains some NSFW images.
I'm trying to make the left div 300px width and the right one to be rest of the page.
I finally figured out how to get them stay next to each other like that, but the fix I used made the heights all weird.
HTML & CSS:
http://pastebin.com/tggteQWg
Any suggestions/ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 CSS 中(在 div#right 中),如果您删除
margin-left : 300px
它应该可以修复它。或者,您可以删除overflow :scroll
。(不要将它们都删除,但尝试其中之一,两者似乎都能解决您的问题)
In your CSS (within div#right), if you remove
margin-left : 300px
it should fix it. Alternatively, you can removeoverflow : scroll
.(Don't remove them both, but try one or the other, both seem to fix your issue)