groups

name language licence
CSS : notes sur class css CSS Other
CSS : pseudo class :last-child CSS Other
CSS : reset des styles et comportements par defaut des navigateurs CSS Other
CSS : ordre des paramètres pour les supers propriètés margin et padding CSS Other
CSS: ombre et lueur avec box-shadow et text-shadow CSS Other
CSS : bordure arrondi avec border-radius CSS Other
CSS : animations avec transitions-property et transition-duration CSS Other
HTML/CSS : une bonne methode pour center verticalement un block HTML Other

< 1 2 3 >



language: CSS
licence: Other

CSS : bordure arrondi avec border-radius

options: view full snippetsend to code collector
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-top-left-radius: 6px;
border-bottom-right-radius: 6px;
-webkit-border_radius: 6px;
-moz-border-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
-webkit-border-top-left-radius: 6px;
-moz-border-radius-bottomleft: 6px;
-moz-border-radius-topright: 6px;
-moz-border-radius-bottomright: 6px;
-moz-border-radius-topleft: 6px;
	
(Continues...)