CSS3 - Coins arrondis

CSS3 Les coins arrondis sont utilisés pour ajouter des coins colorés spéciaux au corps ou au texte en utilisant la propriété border-radius.Une syntaxe simple des coins arrondis est la suivante -

#rcorners7 {
   border-radius: 60px/15px;
   background: #FF0000;
   padding: 20px; 
   width: 200px;
   height: 150px; 
}

Le tableau suivant montre les valeurs possibles pour les coins arrondis comme suit -

N ° Sr. Valeur et description
1

border-radius

Utilisez cet élément pour définir la propriété du rayon des quatre frontières

2

border-top-left-radius

Utilisez cet élément pour définir la frontière du coin supérieur gauche

3

border-top-right-radius

Utilisez cet élément pour définir la frontière du coin supérieur droit

4

border-bottom-right-radius

Utilisez cet élément pour définir la frontière du coin inférieur droit

5

border-bottom-left-radius

Utilisez cet élément pour définir la frontière du coin inférieur gauche

Exemple

Cette propriété peut avoir trois valeurs. L'exemple suivant utilise à la fois les valeurs -

<html>
   <head>
      <style>
         #rcorners1 {
            border-radius: 25px;
            background: #8AC007;
            padding: 20px;
            width: 200px;
            height: 150px;
         }
         #rcorners2 {
            border-radius: 25px;
            border: 2px solid #8AC007;
            padding: 20px; 
            width: 200px;
            height: 150px;
         }
         #rcorners3 {
            border-radius: 25px;
            background: url(/css/images/logo.png);
            background-position: left top;
            background-repeat: repeat;
            padding: 20px; 
            width: 200px;
            height: 150px;
         }
      </style>
   </head>

   <body>
      <p id = "rcorners1">Rounded corners!</p>
      <p id = "rcorners2">Rounded corners!</p>
      <p id = "rcorners3">Rounded corners!</p>
   </body>
</html>

Il produira le résultat suivant -

Chaque propriété Corner

Nous pouvons spécifier la propriété chaque coin comme indiqué ci-dessous dans l'exemple -

<html>
   <head>
      <style>
         #rcorners1 {
            border-radius: 15px 50px 30px 5px;
            background: #a44170;
            padding: 20px; 
            width: 100px;
            height: 100px; 
         }
         #rcorners2 {
            border-radius: 15px 50px 30px;
            background: #a44170;
            padding: 20px;
            width: 100px;
            height: 100px; 
         }
         #rcorners3 {
            border-radius: 15px 50px;
            background: #a44170;
            padding: 20px; 
            width: 100px;
            height: 100px; 
         }
      </style>
   </head>

   <body>
      <p id = "rcorners1"></p>
      <p id = "rcorners2"></p>
      <p id = "rcorners3"></p>
   </body>
<body>

Il produira le résultat suivant -