groups

name language licence
Multiple backgrounds with CSS3 CSS BSD
Rounded Corners with Border-Radius PHP BSD



language: PHP
licence: BSD

Rounded Corners with Border-Radius

options: view full snippetsend to code collector
.container{  
    background-color: #fff;  
    margin: 10px;  
    padding: 10px;  
    -moz-border-radius-topleft: 20px;  
    -webkit-border-top-left-radius: 20px;  
    -moz-border-radius-bottomright: 20px;  
    -webkit-border-bottom-rightright-radius: 20px;  
}  
	
(Continues...)