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:
✅ Answered with Bootstrap 5 best practices.- 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.
Recommended Links:
← Back to All Questions