p text-transform: uppercase;
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Example</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type='text/css'> p { font: 12pt arial; } p.none { text-transform: none; } p.capitalize { text-transform: capitalize; } p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } </style> </head> <body> <p class="none">This paragraph has a value of none for the text-transform property</p> <p class="capitalize">This paragraph has a value of capitalize for the text-transform property</p> <p class="uppercase">This paragraph has a value of uppercase for the text-transform property</p> <p class="lowercase">This paragraph has a value of lowercase for the text-transform property</p> </body> </html>