Bootstrap CSS Classes

Bootstrap CSS class .text-lowercase

<p class="text-lowercase">lowercased text.</p>

Preview

Are you tired of writing HTML by hand?

CSS source

/* _text.scss:29 */
.text-lowercase  { text-transform: lowercase !important; }
.text-uppercase  { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

// Weight and italics

.font-weight-light  { font-weight: $font-weight-light !important; }
.font-weight-normal { font-weight: $font-weight-normal !important; }
.font-weight-bold   { font-weight: $font-weight-bold !important; }
.font-italic        { font-style: italic !important; }

// Contextual colors

.text-white { color: $white !important; }

@each $color, $value in $theme-colors {
  @include text-emphasis-variant(".text-#{$color}", $value);
}

More Bootstrap CSS classes in Text category

© 2024 Shuffle. All rights reserved.