groups

Link to this snippet:


Download to Code Collector

language: PHP
licence: BSD

Rounded Corners with Border-Radius

options: send to code collectorview all maeghan's snippets
.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;  
}