Answers for "bootstrap font size"

8

font weight bootstrap class

<p class="font-weight-bold">Bold text.</p>
<p class="font-weight-normal">Normal weight text.</p>
<p class="font-weight-light">Light weight text.</p>
<p class="font-italic">Italic text.</p>
Posted by: Guest on July-29-2020
36

font size css

.class {
	font-size: 12px;
}
Posted by: Guest on February-15-2020
4

bootstrap text sizing

<p class="fs-1">.fs-1 text</p>
<p class="fs-2">.fs-2 text</p>
<p class="fs-3">.fs-3 text</p>
<p class="fs-4">.fs-4 text</p>
<p class="fs-5">.fs-5 text</p>
<p class="fs-6">.fs-6 text</p>
Posted by: Guest on August-02-2021
1

bootstrap costumize font

/* inside your custom.css file*/
font-family: "Times New Roman", Times, serif !important;
Posted by: Guest on November-02-2021
0

bootstrap 4 responsive paragraph

<p class="lead">
  Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
</p>
Posted by: Guest on December-01-2020
0

bootstrap blockquote

<blockquote class="blockquote">
  <p class="mb-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
  <footer class="blockquote-footer">Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
Posted by: Guest on October-08-2020

Browse Popular Code Answers by Language