背景を画像で埋める

body {
  /* 画像のURLを指定 */
  background-image: url('path/to/your/image.jpg');

  /* 画像をカバーするように調整 */
  background-size: cover;

  /* 画像が要素全体に広がるように指定 */
  background-repeat: no-repeat;

  /* 画像の表示位置を中央に調整 */
  background-position: center center;

  /* 画像が要素全体を覆うように指定 */
  height: 100vh;
  margin: 0;
}
タイトルとURLをコピーしました