css 单独设置左上,右上,左下,右下 圆角属性

17 阅读1分钟

css 单独设置左上,右上,左下,右下 圆角属性

border-top-left-radius: 5px;     /* 左上角 */

border-top-right-radius: 5px;    /* 右上角 */

border-bottom-left-radius: 5px;  /* 左下角 */

border-bottom-right-radius: 5px; /* 右下角 */

//合并写法
border-radius: 5px 0 0 0;