In this article I’ll introduce the declaration !important in CSSs and explain how to use it as a “workaround” to avoid adopting IE proprietary code to obtain the max-width effect in your web pages.
When a CSS propriety is specified twice, the browser will commonly use the last one. Let’s see an example:
#main {
width:600px;
width:800px;
}
In this example [...]
RSS Feed (All posts)