According to personal preference, spare some common parts CSS3 code, collect in ...
Background: #1d82c1; /* Set alternate properties for older or unsupported browsers */
Background:-moz-linear-gradient (top, #59c9f9, #1d82c1 100%);
Background:-webkit-gradient (linear, 0 0, 0 100%, from (#59c9f9), to (#1d82c1));/* Background color gradient */
Filter:progid:DXImageTransform.Microsoft.gradient (startcolorstr= ' #59c9f9 ', endcolorstr= ' #1d82c1 '); /* IE6,IE7 */
-ms-filter: "Progid:DXImageTransform.Microsoft.gradient (startcolorstr= ' #59c9f9 ', endcolorstr= ' #1d82c1 ')"; /* IE8 */
border-bottom:1px solid #fff; /* Bottom Border */
border-radius:5px 50px 50px 0;/* fillet parameter start clockwise from top to bottom */
text-shadow:30px 15px 3px #000;/* Text projection right 30px down 15px diffused 3px color Black */
-webkit-box-shadow:0px 0px 5px #333;
-moz-box-shadow:0px 0px 5px #333;
box-shadow:0px 0px 5px #333;/* Projection */
Filter:alpha (OPACITY=50); /* This is set for IE6, the value is 0-100, the other three 0 to 1*/
-moz-opacity:0.5; /* This is to support some of the older versions of Mozilla browser */
-khtml-opacity:0.5;/* this to support some of the older versions of the Safari browser */
opacity:0.5; /* This is the most important because it is a CSS standard. This property supports Firefox, Safari and opera*/
font:14px/20px "Microsoft Yahei"/* Size line High font */
Common parts CSS3 code, collected in ...