Показать сообщение отдельно
  #3 (permalink)  
Старый 24.10.2010, 10:43
Особый гость
Посмотреть профиль Найти все сообщения от monolithed
 
Регистрация: 02.04.2010
Сообщений: 4,260

<style type="text/css">

#main {
    background: gray;
    position: relative;
    overflow: hidden;
    width: 100px;
    height: 200px;
}
       
#bottom {    
    background: red;
    margin-top: 100px;
    width: 100px;
    height: 100px;
}
</style>

<div id="main">
     <div id="bottom"></div>      
</div>  

<script type="text/javascript">
window.onload = function(){
     document.getElementById('bottom').style.display = (window.screen.height > 200) ? 'block' : 'none';
};
</script>
Ответить с цитированием