CSS text-transform Property
CSS text-transform Property Tutorial CSS text-transform Property CSS text-transform property is used to control capitalization of text. change text appears visually in browser without changing the original HTML Content. HTML text actual in stays same, but CSS change how is displayed. Syntax selector { text-transform: value; } CSS text-transform Property Structure Explained with Diagram CSS text-transform Property 1) uppercase 2) lowercase 3)capitalize CSS text-transform Property Tutorial Example <! DOCTYPE html > < html > < head > < style > .upper { text-transform : uppercase ; } .lower { text-transform : lowercase ; } .cap { text-transform : capitalize ; } </ style > </ head > < body > < h2 class = "upper" > css text transformation </ h2 > < p class = "lower" > CSS TEXT TRANSFORMATION PROPERTY </ p > < p class = "...