HTMLの背景画像を画面サイズに合わせる方法

HTMLの背景画像を画面サイズに合わせる方法

HTMLの背景画像を画面サイズに合わせる方法について、以下に示します。

HTMLファイル (index.html)

<!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="styles.css">
  <title>背景画像の例</title>
</head>
<body>
  <div class="test-background"></div>
</body>
</html>

CSSファイル (styles.css)

.test-background {
  background-image: url('background.jpg');
  background-size: cover; /* 画像を画面サイズに合わせる */
  background-position: center; /* 画像を中央に配置 */
  background-repeat: no-repeat; /* 画像を繰り返さない */
  width: 100vw; /* ビューポート幅に合わせる */
  height: 100vh; /* ビューポート高さに合わせる */
  margin: 0; /* マージンをリセット */
  padding: 0; /* パディングをリセット */
}

このコードは、背景画像が画面全体に合わせて表示されるように設定しています。