火狐下的css样式特效

ie和火狐浏览器下css半透明

IE 下: filter:alpha(opacity=75);
火狐下:opacity:0.75;

火狐下css阴影:

box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

火狐下css圆角:

border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-o-border-radius: 10px;
-khtml-border-radius: 10px;

+