HTML CSS examples for CSS Widget:Color
Making the first letter of each word color css
<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>