jquery에! important를 포함하는 방법 jQuery를 사용하여 css 속성에! important를 추가하려고합니다. $("tabs").css('height','650px;!important'); 그러나! important는 효과가 없습니다. jquery에! important를 포함하는 방법은 무엇입니까? 분명히 jQuery에서 이것을 할 수 있습니다. $("#tabs").css("cssText", "height: 650px !important;"); Src : http://bugs.jquery.com/ticket/2066 이 문제를 다음과 같이 해결했습니다. inputObj.css('cssText', inputObj.attr('style')+'padding-left: ' + (width + 5..