String Manipulation with text-transform - HTML CSS CSS Animatable Property

HTML CSS examples for CSS Animatable Property:transform

Description

String Manipulation with text-transform

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
span {<!--  w  ww. j  a v a  2s  . c o m-->
   text-transform:capitalize;
}
</style> 
 </head> 
 <body> 
  <span>test</span>  
 </body>
</html>

Related Tutorials