Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何降低 div 相对于本机呈现的高度的高度?
似乎是一个相当简单的问题,但将高度设置为百分比不是一个选项,也不是margin: 0 -10px 0 0;或padding: 0 -10px 0 0;(显然)div 中没有任何元素我可以减小它的大小,如果我应用边距它似乎可以工作,除了边界半径受到这个过程的伤害。
margin: 0 -10px 0 0;
padding: 0 -10px 0 0;
使用jQuery:
$('div').animate({'height':'-=10px'}, 1000);
“-=10px”会将当前高度降低 10px。