A.container
可以包含许多.components
,并且.components
它们本身可以包含.containers
(反过来可以包含 .components 等)
给定这样的代码:
$(".container .component").each(function(){
$(".container", this).css('border', '1px solid #f00');
});
我需要在大括号内的行中添加什么以仅选择.containers
其width
in CSS 设置为的嵌套auto
?我确信这很简单,但我并没有真正使用过 jQuery。