2025年8月18日月曜日

📌 サンプルコード(キャプション+クラス名)OpenAI ChatGPT-5先生


<!DOCTYPE html>

<html lang="ja">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Document</title>

  <style>

    /* container クラスのスタイル */

    .container {

      text-align: center; /* 中央寄せ */

      margin: 20px; /* 外側に余白 */

    }


    /* figcaption のスタイル */

    figcaption {

      font-size: 14px; /* 文字サイズを少し小さめに */

      color: #555; /* グレーで控えめに */

      margin-top: 8px; /* 画像との間に余白 */

    }

  </style>

</head>

<body>

  <div class="container">

    <figure>

      <img src="document.jpg" alt="サンプル画像" width="640" height="228">

      <figcaption>これはサンプル画像のキャプションです</figcaption>

    </figure>

  </div>

</body>

</html>


Document
サンプル画像
これはサンプル画像のキャプションです
サンプル画像
これはサンプル画像のキャプションです
.container { text-align:center; margin:20px; } .container figure { display:inline-block; margin:0; } .container figcaption { font-size:14px; color:#555; margin-top:8px; }
サンプル画像
これはサンプル画像のキャプションです