0

Chrome 版本:23.0.1271.95 m 操作系统:Windows 7 64 位

请查看http://jsfiddle.net/CTdQd/2/中的测试页面或源代码。

在页面中有一个父 div 样式为“display: inline-block; position: relative;” 其中有 3 个不同宽度和高度的孩子。只有一个孩子有“相对”的位置,另外两个有“绝对”的位置。在 3 个孩子之间切换“相对”位置时,父 div 的高度正确更新但宽度不正确,其宽度不会改变。在 Firefox 和 IE 中都可以。这是铬错误吗?

<!DOCTYPE html>
<html>
<head>
  <meta content="text/html; charset=UTF-8" http-equiv="content-type">
  <title>test</title>
  <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  <style>
    #wrap {
      border: 1px solid #F00;
      display:inline-block;
      position:relative;
    }
    .out {
      position:absolute;
      left: 0;
      top: 600px;
    }
    .out.in {
      position:relative;
      left: 0;
      top: 0;
    }
  </style>
</head>
<body>
  <div style="width:600px;height:400px;border:1px solid #DFDFDF;text-align:center;overflow:hidden;">
    <div id="wrap">
      <div id="item1" class="out in" style="width:200px;height:200px;background-color:#0F0;">200*200</div>
      <div id="item2" class="out" style="width:300px;height:100px;background-color:#00F;color:#FFF;">300*100</div>
      <div id="item3" class="out" style="width:400px;height:300px;background-color:#DDD;">400*300</div>
    </div>
  </div>
  <p id="log"></p>
  <div style="margin-top:10px;">
    <input type="submit" id="test1" value="show1">
    <input type="submit" id="test2" value="show2">
    <input type="submit" id="test3" value="show3">
  </div>
  <script>
    $(function() {
        $('input').click(function() {
            var parent = $('#wrap');
            $('.in').removeClass('in');
            $('.out').eq($(this).index()).addClass('in');
            $('#log').text('the parent div\'s width: ' + parent.width() + 'px, height: ' + parent.height() + 'px');
        });
    });
  </script>
</body>
</html>
4

1 回答 1

0

我相信这是 WebKit 中的一个错误。我为此提交了WebKit 错误 104872

于 2012-12-13T02:45:01.887 回答