天天看點

我的border能自定義四角之border-radius : 左上角,右上角,左下角,右下角。

1 邊框:border: 1px solid #0081df;

我的border能自定義四角之border-radius : 左上角,右上角,左下角,右下角。

2 想要單獨加上四個圓角:

我的border能自定義四角之border-radius : 左上角,右上角,左下角,右下角。
  1. border-bottom-left-radius: 5px;
  2. border-top-left-radius: 5px;
  3. border-top-right-radius: 5px;
  4. border-bottom-right-radius: 5px;

3 table的border-radius無法直接設定, 可用ul,li替換

我的border能自定義四角之border-radius : 左上角,右上角,左下角,右下角。