常用CSS样式

边框圆角

.round{
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
}

Min-height in IE

 .box {
    min-height:500px;
     height:auto !important;
     height:500px; }

 CSS透明度

 .transparent {
     filter:alpha(opacity=50);
     -moz-opacity:0.5;
     -khtml-opacity: 0.5;
     opacity: 0.5;
 }

posted @ 2012-07-21 17:17  凌晨_6daye  阅读(62)  评论(0)    收藏  举报