BootStrap 5(BS 5)の学習4

19856 ワード

画像を添付する場合、画像の形状は3種類あります:円形、円形、サムネイル
次に、画像の形状を円形で指定する方法を示します.
<img src="cinqueterre.jpg" class="rounded" alt="Cinque Terre" width="304" height="236">
画像のシェイプを円形で指定するには、次の手順に従います.
<img src="cinqueterre.jpg" class="rounded-circle" alt="Cinque Terre" width="304" height="236">
Thumbnail形式も同じです.
<img src="cinqueterre.jpg" class="img-thumbnail" alt="Cinque Terre" width="304" height="236"> 
float-start、float-endを使用して、左、右揃えの画像を作成します.
<img src="paris.jpg" class="float-start" alt="Paris" width="304" height="236"> 
  <img src="paris.jpg" class="float-end" alt="Paris" width="304" height="236"> 
画像を中心に追加するには、mx-auto、d-blockを追加します.
<img src="paris.jpg" class="mx-auto d-block" style="width:50%"> 
反応型画像は画面サイズを自動的に調整します.
img-fluidをラベルに追加し、反応型にすることができます.
<img class="img-fluid" src="ny.jpg" alt="New York" width="1100" height="500">
起動バーを使用して警告メッセージを作成できます.
 <div class="alert alert-success">
    <strong>Success!</strong> This alert box could indicate a successful or positive action.
  </div>
  <div class="alert alert-info">
    <strong>Info!</strong> This alert box could indicate a neutral informative change or action.
  </div>
  <div class="alert alert-warning">
    <strong>Warning!</strong> This alert box could indicate a warning that might need attention.
  </div>
  <div class="alert alert-danger">
    <strong>Danger!</strong> This alert box could indicate a dangerous or potentially negative action.
  </div>
  <div class="alert alert-primary">
    <strong>Primary!</strong> Indicates an important action.
  </div>
  <div class="alert alert-secondary">
    <strong>Secondary!</strong> Indicates a slightly less important action.
  </div>
  <div class="alert alert-dark">
    <strong>Dark!</strong> Dark grey alert.
  </div>
  <div class="alert alert-light">
    <strong>Light!</strong> Light grey alert.
  </div>

警告ボックスにリンクを作成するにはalert-linkを使用します.
<strong>Success!</strong> You should <a href="#" class="alert-link">read this message</a>.
警告メッセージに閉じるボタンを作成するには:
<div class="alert alert-success alert-dismissible">
    <button type="button" class="btn-close" data-bs-dismiss="alert"></button>
    <strong>Success!</strong> This alert box could indicate a successful or positive action.
  </div>
警告ウィンドウを閉じるときにfade効果を持つようにfade showを記入してください.
<div class="alert alert-success alert-dismissible fade show">