border-radius

border-radiusプロパティは、要素の角を丸くするために使用されるCSSプロパティです。

border-radiusプロパティの説明図
border-radiusプロパティ
記法

.クラス名 {
 border-radius:左上角 右上角 右下角 左下角;
}

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="./main.css" />
    <title>border-radiusプロパティ</title>
  </head>

  <body>
    <div class="border-radius"></div>
    <div class="border-radius-circle"></div>
  </body>
</html>
.border-radius {
  background: #a9a9a9;
  width: 100px;
  height: 100px;
  border-radius: 10px 20px 30px 40px;
  margin: 10px;
}
.border-radius-circle {
  background: #a9a9a9;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px;
}
出力結果