Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> h1 { color: red; } p.text { text-transform: initial; } </style> </head> <body> <h1>Example with text-transform property</h1> <h2>text-transform: initial:</h2> <p class="text"> Example of the text-transform property with the "initial” value: </p> </body> </html>