css3

标签: css3

CSS3效果集锦

转自:http://www.cnblogs.com/suihui/archive/2012/12/13/2816508.html * * 一、前缀: -moz(例如 -moz-border-radius)用于Firefox -webkit(例如:-webkit-border-radius)用于Safari和Chrome。 二、CSS3圆角(所有的) -moz-border-radius: 15px; -webkit-border-radius: 15px; 三、CSS3圆角(个别的) -moz-border-radius-topleft: 15px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomright: 15px; -moz-border-radius-bottomleft: 0px; -webkit-border-top-left-radius: 15px; -webkit-border-top-right-radius: 0px; -webkit-border-bottom-left-radius: 0px; -webkit-border-bottom-right-radius: 15px; 四、CSS3中的边框颜色:

阅读全文...