<!DOCTYPE html> <html> <head> <title>NAME OF THE PAGE</title> <meta charset="UTF-8"> <style> .shit { width: 300px; height: 300px; background: #000; overflow: auto; } .son_of_the_shit { max-width: 100%; height: 300px; background: red; position: relative; // добавить позиционирование } </style> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(function() { var shit = $(".shit").css("height"); // в эту переменную - значение для отступа $(".son_of_the_shit").css({"bottom": shit}); // тут задаем значение для отступа }); </script> </head> <body> <div class="shit"> <div class="son_of_the_shit"> </div> </div> </body> </html>