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?
All browsers that support
position:fixedwill use it, the others fall back toabsolute.