Hey there, I have a question that may seem silly, but I just can't seem to find the answer anywhere.
Please take a look at this fiddle:
I need to remove #Navigation
in the CSS declaration below:
#Navigation .stretch {
...
}
so it should look like this:
.stretch {
...
}
Why is the browser (chrome Version 26.0.1410.64 m) ignoring this rule?
I've also tested it on Firefox with the same result.
It doesn't seem to be a CSS priorities issue, as both DevTools and FireBug aren't showing it, not even crossed out.
Thanks!
EDIT: Thank you so much everyone! I couldn't see those crossed rules before, I spent over an hour scrolling through DevTools and FireBug trying to figure out such a "simple" problem.