CSS3圆角边框

圆角: border-radius

  1. border-radius: 左上 右上 右下 左下
    border-radius: 10px 20px 30px 40px;的结果为web

    左上 右上 右下 左下

  2. 左上: border-top-left-radius: 10px; 等价于 border-radius: 10px 0 0 0;svg

    右上: border-top-right-radius: 10px; 等价于 border-radius: 0 10px 0 0;code

    左下: border-bottom-left-radius: 10px; 等价于 border-radius: 0 0 0 10px;xml

    右下: border-bottom-right-radius: 10px; 等价于 border-radius: 0 0 10px 0;blog

  3. border-radius: 10px 40px 100px; 为 左上 右上左下 右下it

    border-radius: 10px 40px; 为 左上右下 右上左下webkit

    border-radius: 10px; 为 四个圆角值相同im