HTML HTML5 HTMLタグ スマートフォン |
CSS CSSプロパティ CSS・HTML便利ツール |
HTML色見本 配色組み合わせツール 特殊文字 |
JAVA Android |
PHP Smarty修飾子 EXCEL |
@charset "utf-8";
.radius1 {
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border:1px solid black;
}
.radius2 {
border-radius:10px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
background-color:#fff;
}
.radius3 {
border-radius:10px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
padding:10px;
background-color:#fff;
border:1px solid #ccc;
}
<html>
<header>
<title>CSSのサンプル</title>
<link href="/test.css" rel="stylesheet" type="text/css" media="all" />
</header>
<body>
<div class="radius1">
.radius2のサンプル(角丸5px)
</div>
<div class="radius2">
.radius2のサンプル(角丸10px)
</div>
<div class="radius3">
.radius3 のサンプル
</div>
</body>
</html>