Comment créer des arrondies en CSS ? C’est très simple. Nous allons utiliser la propriétés border-radius

Comment utiliser la propriété border-radius
le HTML
<div id="article"> </div>
le CSS
<style type="text/css">
#article{
border-radius:20px;
background-color:blue;
height:150px;
width:200px;
}
</style>