Firefox 4 and CSS3
Some interesting tidbits are arising now that Firefox 4 is out in the wild. It turns out that Firefox 4 will accept both the standard and –moz specific versions of CSS3. For example, take the following drop shadow css: .shadow{ box-shadow: 0px 0px 12px #000; -moz-box-shadow: 0px 0px 120px #000; } In the current order, the –moz statement will be the rendering statement. However……