What is the difference between uppercase and lowercase?
Upper Case: THIS IS UPPER CASE
Lower Case: Ā this is lower case
Example:
<html> <head> <style> .height_set { text-transform: uppercase; }.forLower { text-transform: uppercase; } .forCapitalize <div class=”forLower”>this is lower case representation.</div> <div class=”forCapitalize”>this is capitalizeĀ representation.</div></h1> |
Output:
THIS IS UPPER CASE REPRESENTATION
this is lower case representation.
This Is Capitalize Representation.