1) BOX CON TUTTI GLI ANGOLI ARROTONDATI (TUTTI UGUALI)
css:
#angoli-arrotondati {
width: 450px;
height: 300px;
margin: 20px 0;
background-color: #F00;
-moz-border-radius: 10px; /* per Firefox */
-webkit-border-radius: 10px; /* per Safari e Google Chrome */
border-radius: 10px;
}
2) BOX CON I QUATTRO ANGOLI ARROTONDATI DIVERSI
css:
#angoli-arrotondati-2 {
width: 450px;
height: 300px;
margin: 20px 0;
background-color: #F00;
-moz-border-radius: 10px 15px 20px 25px; /* per Firefox */
-webkit-border-radius: 10px 15px 20px 25px; /* per Safari e Google Chrome */
border-radius: 10px 15px 20px 25px;
}