Advertisement
here2share

HTML text-transform

Aug 16th, 2016
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p.uppercase {
  6.     text-transform: uppercase;
  7. }
  8.  
  9. p.lowercase {
  10.     text-transform: lowercase;
  11. }
  12.  
  13. p.capitalize {
  14.     text-transform: capitalize;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <p class="uppercase">This is some text.</p>
  21. <p class="lowercase">This is some text.</p>
  22. <p class="capitalize">This is some text.</p>
  23.  
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement