元素`s绝对定位问题

时间:2012-06-09 11:16:07

标签: javascript jquery html5 css3

有没有办法将children elements size whose position is absolute纳入parents size,我的意思是说:

我们有:

MarkUP

        <div class="parent">
         <div class="children">
           My position is absolute.
         </div>
        </div>

CSS

         .parent      // position by default static
          {
            width:100%;
            height:auto;
          }

          .children
          {
            position :absolute;
            width:100%;
            height:auto;
          }

我的问题是父亲的身高是0,可能是因为它的孩子绝对定位。那么有没有解决方法呢?

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

旧帖但有人可能会觉得这很有用。如果你愿意使用javascript

http://shinytoyrobots.com/2011/11/super-simple-jquery-height-manipulation/