Exemple de code de la propriété CSS border-bottom-right-radius.
<style>
.defaut{ background-color : #d5f7d5; border : 1px solid #000; display : block; padding : 30px; margin : 5px }
.radius{ border-bottom-right-radius : 80px 5em }
.radiuspourcent{
border-bottom-right-radius : 50% 50%;
width:200px;
height:100px;
}
</style>
<div class="defaut radius">Effet border-bottom-right-radius</div>
<div class="defaut radiuspourcent">Effet border-bottom-right-radius</div>
Interprétation du code de la propriété border-bottom-right-radius CSS par votre navigateur.
Effet border-bottom-right-radius
Effet border-bottom-right-radius
Interprétation normale du code de la propriété CSS border-bottom-right-radius (copie d'écran).