On the given page below the border radius for the #topnav doesnt work for mozilla but works for google chrome, i use the following css code:
#topnav { display:inline-block;float: right; text-align: right; background: #e4f4fe;
border:1px solid #e4f4fe;
border-bottom-color: #e4f4fe;
border-bottom-width: 4px;
border-bottom-style: solid;
border-radius: 0px 0px 15px 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-bottom-right-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
margin-right: 90px; margin-top: 0px;
width:265px;}5E9DC8
The new Firefox has now the unprefixed version of
border-radius.Though the old version was
you now have to take
for the new Firefox. That’s why you always have to declare the official version last (so no overriding can happen).
Nonetheless, it still should work. Perhaps you have some other rule overriding this one? (Example) Also, delete the
5E9DC8behind your ruleblock.Btw, you are on the safe side if you just choose the shorthand notation because it has no notation-differences.