border-top-left-radiusプロパティは、ボックスの左上の角丸を指定する際に使用します。
角丸の形状を指定する際には、水平方向と垂直方向の半径のセットで表します。
指定するのは、ボーダーの外側の輪郭です。
角丸の楕円半径は、長さかパーセンテージで指定します。
2つの値を記述しますが、1つ目の値は水平方向、2つ目の値は垂直方向の半径となります。
2つ目の値が省略された場合には、1つ目と同じ値になります。
尚、border-radiusプロパティを使用すると、ボックスの4つのコーナーの角丸をまとめて指定することができます。
table.sample1 {
border:solid 10px blue;
border-top-left-radius: 1em;
}
table.sample1 td {
background-color:forestgreen;
border-top-left-radius: 0.5em;
}
p.sample2 {
width:280px; height:130px; background-color:#ccecf4;
border:solid 20px #7fcfe2;
border-top-left-radius: 100px 50px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<table class=”sample1″>
<tr><td>指定したプロパティ</td><td>border-top-left-radius</td></tr>
<tr><td>table要素に指定した値</td><td>1em</td></tr>
<tr><td>td要素に指定した値</td><td>0.5em</td></tr>
</table>
<p class=”sample2″>border-top-left-radius: 100px 50px; を指定</p>
</body>
</html>
指定したプロパティ | border-top-left-radius |
table要素に指定した値 | 1em |
td要素に指定した値 | 0.5em |
border-top-left-radius: 100px 50px; を指定
table.prefix_sample1 {
border:solid 10px blue;
-moz-border-top-left-radius: 1em;
-webkit-border-top-left-radius: 1em;
-o-border-top-left-radius: 1em;
-ms-border-top-left-radius: 1em;
}
table.prefix_sample1 td {
background-color:forestgreen;
-moz-border-top-left-radius: 0.5em;
-webkit-border-top-left-radius: 0.5em;
-o-border-top-left-radius: 0.5em;
-ms-border-top-left-radius: 0.5em;
}
p.prefix_sample2 {
width:280px; height:130px; background-color:#ccecf4;
border:solid 20px #7fcfe2;
-moz-border-top-left-radius: 100px 50px;
-webkit-border-top-left-radius: 100px 50px;
-o-border-top-left-radius: 100px 50px;
-ms-border-top-left-radius: 100px 50px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<table class=”prefix_sample1″>
<tr><td>指定したプロパティ</td><td>border-top-left-radius</td></tr>
<tr><td>table要素に指定した値</td><td>1em</td></tr>
<tr><td>td要素に指定した値</td><td>0.5em</td></tr>
</table>
<p class=”prefix_sample2″>border-top-left-radius: 100px 50px; を指定</p>
</body>
</html>
指定したプロパティ | border-top-left-radius |
table要素に指定した値 | 1em |
td要素に指定した値 | 0.5em |
border-top-left-radius: 100px 50px; を指定