カテゴリー
CSS

【CSS】角丸

コピペ用。
半径のセットは/で区切られている。
左上・右上・右下・左下の順で指定。

4隅角丸

/* border-radius */
border-radius: 10px 10px 10px 10px / 10px 10px 10px 10px;
  -webkit-border-radius: 10px 10px 10px 10px / 10px 10px 10px 10px;
  -moz-border-radius: 10px 10px 10px 10px / 10px 10px 10px 10px;

上2隅角丸

/* border-radius */
border-radius: 10px 10px 0 0 / 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0 / 10px 10px 0 0;

下2隅角丸

/* border-radius */
border-radius: 0 0 10px 10px / 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px / 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px / 0 0 10px 10px;

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です