Search code examples
htmlbootstrap-4

Why this class "font-weight-bold" doesn't work? [Bootstrap]


  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="/css/bootstrap.css">
  </head>
  <body>

    <h1 class="h1">Bootstrap</h1>
    <p class="font-weight-bold">Palabra</p>
    <p class="font-italic">Palabra</p>

  </body>
</html>

Adding "font-weight-bold" class to a p doesn't make any change to the text

No change

What can i do?


Solution

  • It's font-weight-bold for Bootstrap 4

    And class="fw-bold" for Bootstrap 5