вопрос к css/xhtml гуру....=) есть такой код..... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Untitled</title> <style type="text/css"> .parent{ height:99%; width:99%; overflow:hidden; background-color: #ccc; border:1px dashed #666; } .fixed_height_child{ overflow:hidden; height:200px; width:100%; background-color: #0f0; border:1px dashed #f00; margin-top:30px; } .resizable_height_child{ height:100%; width:100%; overflow:hidden; background-color: #00f; border:1px dashed #000; margin-bottom: } </style> </head> <body> <div class='parent'> <div class='fixed_height_child'></div> <div class='resizable_height_child'></div> </div> </body> </html> надо чтоб по высоте занимал все доступное место и не вылазил за его пределы.....народ плз хлп....=)....