Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <style> .a { text-transform: capitalize } .b { text-transform: lowercase } </style> </head> <body> <h2>Text-transform property example</h2> <div class="a">"Text transform property"</div> <br/> <div class="b"> "THIS IS SOME PARAGRAPH FOR EXAMPLE". </div> </body> </html>