Answers for "text italics on bootstrap 5"

2

bootstrap italics

<p class='fst-italic'>Italics</p>

<!-- Bootstrap 5 only; for v4, use 'font-italic' --!>
<!-- https://getbootstrap.com/docs/5.0/utilities/text/#font-weight-and-italics -->
Posted by: Guest on March-24-2022
6

bootstrap 5 text bold

<p class="fw-bold">Bold text.</p>
<p class="fw-bolder">Bolder weight text (relative to the parent element).</p>
<p class="fw-normal">Normal weight text.</p>
<p class="fw-light">Light weight text.</p>
<p class="fw-lighter">Lighter weight text (relative to the parent element).</p>
<p class="fst-italic">Italic text.</p>
<p class="fst-normal">Text with normal font style</p>
Posted by: Guest on January-11-2022

Browse Popular Code Answers by Language