在Apple IMAC
27英寸和其他大屏幕上
我的页脚有问题。 www.ewafest.com
(网站)
图片有
.ewkaimg {
position:absolute;
bottom:0%;
right:0%;
}
我希望图像粘贴在页脚上,这就是为什么。 并且页脚应始终位于网站底部,而没有这个奇怪的空间(不发粘)。
Weird space between a footer and the bottom of the image
我要学习一些Jquery
,所以如果你们可以推荐一些很棒的东西。
如果我发布的问题有误,请随时批评我。
答案 0 :(得分:0)
如果我理解的正确,那么您需要:
background-size: 100% 100%;
标签上加上<body>
(因为现在背景比<body>
标签本身大。height
中的<div class="et_slide_in_menu_container">
从100%
更改为auto
(由于相同的原因)答案 1 :(得分:-1)
使用自定义CSS:
#footer-bottom{
position: fixed;
bottom: 0;
left: 0;
z-index: 100;
width: 100%;
}