WEBページ作成リファレンス
cman.jp cman.jp > WEBページ作成TOP > CSSリファレンス > 「角丸の設定」

border-radius 「罫線の角丸」

border-radius プロパティは罫線の四隅を丸く設定をまとめて行うことができます。

CSS Ver.適用要素継承
3.0全てしない
広告

border-radius の値

【構文】

border-radius : [radius;
radius [角丸の指定] ( サンプル )
border-radius: ~px;(em,pt,%,・・・)角丸の長さを指定する
px,em,%などの指定が可能
0を指定すると丸みなし(角)となる
border-radius: (1);丸みの長さを1つのみ指定すると、
四隅の丸み指定となる
border-radius: (1) (2)丸みの長さを2つ指定すると、
(1)左上と右下、(2)右上と左下の丸み指定となる
border-radius: (1) (2) (3) (4);丸みの長さを4つ指定すると、
(1)左上、(2)右上、(3)右下、(4)左下の丸み指定となる
border-radius: (1) / (2);丸にの長さを「/(スラッシュ)」で区切り指定すると、
(1)水平方向、(2)垂直方向の丸み指定となる
ページTOP

border-radius のサンプル

1.罫線のスタイルの指定

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>罫線のスタイル指定サンプル</title>
  <style type="text/css">
  <!--
    div  {
           border: 4px solid #333;
           width : 250px;
           height: 100px;
           margin: 10px;
           text-align: center;
         }
    .s1  { border-radius: 10px 30px 50px 70px; }  /* 左上 右上 右下 左下 */
    .s2  { border-radius: 1em  3em  5em  7em;  }  /* 左上 右上 右下 左下 */
    .s3  { border-radius: 10%  30%  50%  70%;  }  /* 左上 右上 右下 左下 */
    .s4  { border-radius: 10px 30px; }            /* 左上+右下 右上+左下 */
    .s5  { border-radius: 10px; }                 /* 左上+右上+右下+左下 */
    .s6  { border-radius: 20px / 50px; }          /* 四隅 水平方向 垂直方向 */
    .s7  { border-radius: 60px 60px 40px 20px / 40px 20px 50px 30px; }
           /* 水平方向(左上 右上 右下 左下) / 垂直方向(左上 右上 右下 左下) */
  -->
  </style>
</head>
<body>
<p style="font-size:12pt; " >罫線の角丸指定サンプル</p>
<div class="s1">s1</div>
<div class="s2">s2</div>
<div class="s3">s3</div>
<div class="s4">s4</div>
<div class="s5">s5</div>
<div class="s6">s6</div>
<div class="s7">s7</div>
</body>
</html>

角丸の指定意味

.s1 { border-radius: 10px 30px 50px 70px; }
.s7 { border-radius: 60px 60px 40px 20px / 40px 20px 50px 30px; }
ページTOP

関連するCSSプロパティ

border-top-left-radius左上の角丸を指定
border-top-right-radius右下の角丸を指定
border-bottom-right-radius右下の角丸を指定
border-bottom-left-radius左下の角丸を指定
border罫線の設定
ページTOP
広告
QrCode
このページのURL
スマートフォン・タブレット運営 : CMAN 株式会社シーマン