CSS border-bottom-left-radius属性

CSS border-bottom-left-radius property

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
 <head>
   <style>
    #rcorner {
      border-radius: 25px;
      border-bottom-left-radius: 45px;
      background: blue;
      padding: 20px;
      width: 200px;
      height: 150px;
    }
   </style>
 </head>
 <body>
   <p id="rcorner">Rounded corners!
</p>
 </body>
</html>