Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WenLiangTseng/6051398 to your computer and use it in GitHub Desktop.
Save WenLiangTseng/6051398 to your computer and use it in GitHub Desktop.
過濾特定的CSS並且替換樣式
$(".container .component").each(function()
{
$(".container", this).each(function() {
if($(this).css('width') == 'auto')
{
$(this).css('border', '1px solid #f00');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment