I want to set margin 0, padding 0 but it not working. Other style is working
$('#mofiz tbody tr td').each(function () {
$(this).css("padding", "0 !important");
$(this).css("margin", "0 !important");
$(this).css("color", "blue");
$(this).css("background", "white");
});