Bootstrap CSS Classes

Bootstrap CSS class .text-monospace

<p class="text-monospace">This is in monospace</p>

Preview

Are you tired of writing HTML by hand?

CSS source

/* _text.scss:7 */
.text-monospace { font-family: $font-family-monospace; }

// Alignment

.text-justify  { text-align: justify !important; }
.text-nowrap   { white-space: nowrap !important; }
.text-truncate { @include text-truncate; }

// Responsive alignment

@each $breakpoint in map-keys($grid-breakpoints) {
  @include media-breakpoint-up($breakpoint) {
    $infix: breakpoint-infix($breakpoint, $grid-breakpoints);

    .text#{$infix}-left   { text-align: left !important; }
    .text#{$infix}-right  { text-align: right !important; }
    .text#{$infix}-center { text-align: center !important; }
  }
}

More Bootstrap CSS classes in Text category

© 2024 Shuffle. All rights reserved.