!important in CSS used to your advantage.

Posted by admin 998 days ago via http://www.mStudiosTALK.com
Tags: css-html
27

Good tidbit to know :

Firefox renders !important, Internet Explorer doesn’t.
For Example :
margin-left:10px !important;
margin-left:5px;

Firefox will push 10 pixels but Internet Explorer skips the line and renders the 5px margin. !important needs to be BEFORE the IE value.