css very important code example
Example 1: important css
body{
font-family: verdana, arial !important;
}
Example 2: css important override
td {height: 50px !important;}
Example 3: override important css
/* Override CSS with existing !important rule */
$(document).ready(function() {
$('#ID').attr('style', 'background: #095540 !important;');
});