我正在尝试使用 box-sizing:border-box; 调整 DIV 的大小。尽管我只允许调整宽度,但每次调整大小事件停止(高度变化)时,DIV 都会缩小。
我的 CSS
.test{
width: 200px;
height: 100px;
border: 1px solid red;
box-sizing: border-box;
}
Javascript
$(document).ready(function() {
$('.test').resizable({handles: 'e', stop: function(event, ui){
$('.wdt').text(ui.size.height);
}});
});
HTML
<div class="test">
Test
</div>
<br/>
<br/>
<span>Height =</span>
<span class='wdt'></span>
调整它的大小,你会看到。
有谁能够帮我?JSFiddle:http: //jsfiddle.net/WuQtw/4/
我试过 jquery 1.8.x .. 1.9.x ......没有任何变化。我不能使用 box-sizing: content-box。