Why put two different position rules in one css selector

css

Solution

All browsers that support `position:fixed` will use it, the others fall back to `absolute`.

Problem

Found this is some example CSS I was reading and I'm having a hard time determining why there are two position rules in one selector. ``` #Div { position:fixed !important; position:absolute; } ``` What does this accomplish? Isn't the `!important` element always going to override the `position: absolute`?

Original source