Making the first letter of each word color css - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Color

Description

Making the first letter of each word color css

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">

.name {<!--from   w w w.ja  va2 s .c  om-->
   text-transform: uppercase;
}
.name span {
   color: red;
}


      </style> 
 </head> 
 <body> 
  <a class="name" href="" title=""> <span>F</span> letcher <span>R</span> obbe <span>I</span> nternational <span>LLP</span> </a>  
 </body>
</html>

Related Tutorials