In this article, I will show you how to change to text to uppercase in css. You can convert lowercase to uppercase word using Css text-transform property i.e css text capitalize.
Html code:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
.uppercase {
text-transform: uppercase;
}
</style>
</head>
<body>
<h1>Transforming letters with CSS </h1>
<p class="uppercase">Lorem ipsum dolor sit amet, consectetuer adipiscing elit.Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus etmagnis dis parturient montes, nascetur ridiculus mus. Donec quam felis,ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quisenim.</p>
</body>
</html>
Note: The text-transform property also another values, capitalize, lowercase and none.
text-transform: capitalize –allows you to to capitalize the first letter of the word.
text-transform: lowercase – convert uppercase to lowercase
text-transform: none – default value
Output:
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article