Arrondir les coins d'une image CSS
/*sans bordure*/ .imgrond { -moz-border-radius:7px; -webkit-border-radius:7px; border-radius:7px; }
/*avec bordure*/ .imgrond_2 { border:2px solid black; -moz-border-radius:7px; -webkit-border-radius:7px; border-radius:7px; }
Code (X)HTML
<p> <img src="/imgage.jpg" width="300" height="400" alt="" class="imgrond" /> </p>