页脚粘滞问题
我在粘页脚技巧方面遇到问题。问题是我想将左侧导航菜单的右边框(实际上边框是内容 div 的左边框)调整到 #container 的高度。但正如您在给定链接上看到的那样,我只能看到右边框的 20-30%。我该如何修复它?请帮忙
I'm having problem with sticky footer trick. The problem is I want to fit the right border of left navigation menu (actually the border is left border of content div) to height of #container. But as you see on the given link, i can only see 20-30% of right border. How can i fix it? Please help
Link to page
http://smiths-heimann.az/?page=2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
--在 css 中使用背景--
使用 1 像素高、998 像素宽且内部有“边框”像素的背景图像。
这将解决这个问题。
我举了一个例子:
在 css 中的 #container 下添加此行:
您可以稍后用自己的 bg 替换它。
--使用 jQuery--
您可以定义内容的高度以随容器的高度扩展。
将问号替换为适合您的金额。
--using background in css--
Use a bg image that is 1px high and 998px wide and has the "border" pixel inside it.
That will solve this issue.
I made an example:
Add this line under #container in css:
You can replace that later with your own bg.
--using jQuery--
You could define the height of the content to expand with the container's height.
replace the question marks with the amount that is right for you.