AI Bootstrap Logo
Bootstrap Questions & Answers Part of the Q&A Network

Is there a class in Bootstrap for making text uppercase automatically?

Asked on Sep 25, 2025

Answer

Yes, Bootstrap provides a class to transform text to uppercase automatically. You can use the `text-uppercase` class to achieve this effect.
<!-- BEGIN COPY / PASTE -->
        <p class="text-uppercase">This text will be uppercase.</p>
        <!-- END COPY / PASTE -->
Additional Comment:
  • The `text-uppercase` class is part of Bootstrap's text transformation utilities.
  • It applies the CSS property `text-transform: uppercase;` to the element.
  • This class can be used on any HTML element containing text.
✅ Answered with Bootstrap 5 best practices.
← Back to All Questions