Привет всем, с наступившим Новым Годом! Есть такой код: <body> <div id="content"> <div> <div> </div> </div> </div> </body> Стили для него: #content{ position: relative; } #content div{ background: red; height: 100px; border: 1px black dashed; } #content div div{ position: absolute; width: 300px; height: 50px; background: gray; border: 1px black dashed; } Тут все понятно, но стоит применить id для третьего дива, т.е.: <body> <div id="content"> <div> <div id="qwerty"></div> </div> </div> </body> #content{ position: relative; } #content div{ background: red; height: 100px; border: 1px black dashed; } #qwerty{ position: absolute; width: 300px; height: 50px; background: gray; border: 1px black dashed; } Как вдруг у #qwerty высота становится фиксированной всегда и равной 100px (хотя прописано 50px). Почему??? Поясните, пожалуйста.