Search This Blog

Friday, November 27, 2015

Convert text to UPPER case using CSS

In this post we are going to write a css which will transform text of the element to UPPER case.


Below is the CSS which does the trick.

.transformUpperCase
{
      text-transform: uppercase !important;
}

No comments:

Post a Comment