
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
Convert text to uppercase with CSS
To convert text to uppercase with CSS, use the text-transform property with value uppercase.
Example
You can try to run the following code to convert text to uppercase:
<html> <head> </head> <body> <p>Normal Text</p> <p style = "text-transform:uppercase;"> Normal Text! This will be in uppercase! </p> </body> </html>
- Related Articles
- Convert text to lowercase with CSS
- Convert All Lowercase Text of a File into Uppercase in Java?
- Convert a String to Uppercase in C
- Underline text with CSS
- Strikethrough text with CSS
- Capitalize text with CSS
- How to convert string to uppercase in TypeScript?
- Swift Program to Convert a String to Uppercase
- Indent Text with CSS text-indent Property
- Add shadow effects to text with CSS
- How to style text buttons with CSS?
- Convert string to lowercase or uppercase in Arduino
- Golang Program to convert a string into Uppercase
- Text Indentation Working with CSS
- Text Transformation Working with CSS

Advertisements