我想将边框底宽从10px设置为0px,我该怎么做?
$(".shortener:last").animate({
'borderBottomWidth' : '0px'});
这不起作用,谢谢!。
更新:我使用了margin-bottom:-10px
答案 0 :(得分:4)
似乎在 jsFiddle example :
中正常工作jQuery的:
$("#block").animate({
borderBottomWidth: "0px"
}, 1500 );
CSS:
div {
width:100px;
border:10px solid green;
}
HTML:
<button id="go">» Run</button>
<div id="block">Hello!</div>
请注意,设置动画的属性值不需要您在示例中使用的引号。