andi25
-
Posts
5 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Store
Posts posted by andi25
-
-
Спасибо, но ведь высота у всех страниц разная
-
вы меня поняли?)
-
у меня есть блок прижатый к низу страницы position: fixed; bottom:0;
мне надо чтоб внизу браузера он остановился на bottom:135px
-
подскажите пожалуйста а как прижать к низу сайта?
попробовал поменять все top на bottom но не работает(
<script type="text/javascript">
var menu = document.getElementById('menu');
window.onscroll = function(){
var scroll = document.documentElement.scrollBottom || document.body.scrollBottom;
if(scroll >= 200){
menu.style.position = 'fixed';
menu.style.bottom = 0 + 'px';
}else {
if(scroll < 200){
menu.style.position = 'absolute';
menu.style.bottom = 200 + 'px';
}
}
}
</script>
Хитрый position: fixed
in HTML Coding
Posted
в моем случай лучше определить высоту из #wrapper
но я в js пока что ничего не понимаю..(
помогите пожалуйста