How to change CSS for converting text to upper case, lower case, or to capitalize
In menus, sidebars or in heading we often require to change the text properties from uppercase to lowercase. Changing the whole contents is not possible on different pages and the best solution is the transform the texts from CSS controls. The CSS property used to defined the change is “text-transform: value”.
The various possibilities of the transforms are uppercase, lowercase, capitalize , inherit or none.
text-transform: none;
text-transform: uppercase;
text-transform: lowercase;
text-transform: capitalize;
text-transform: inherit;- text-transform: none – It is the default property where is takes the default value of text.
- text-transform: uppercase – It convert the whole set of text into uppercase i.e output will be “TRANSFORMED TO UPPERCASE”.
- text-transform: lowercase – It convert the whole set of text into lowercase i.e output will be “transformed to lowercase”.
- text-transform: capitalize – It transform the first letter of every word into capital letter i.e output will be “Transformed To Capitalize”.
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackbackfrom your own site.
Subscribe to our FREE Rss FeedWhat's Hot
Similar Interesting Posts
- How to change the font color and background color of selected text using only css
- How to alphabetize html links into order
- Advantage of using Content Aware Scaling in Photoshop CS4
- How to Rip a DVD to WMV/WMA/MP3 for Pocket PC, PDA, Smart Phone Using Wondershare
- How to Convert an image to HTML/ASCII/Matrix form
- How to Change Text on Windows XP Start Button
- Skyfire – A free and fast mobile web browser
- [important] Before buying a domain
- How to check Broken Links of Wordpress Blogs
- Top 26 reasons to go for wordpress 2.6
- How to convert batch script files to EXE files
- How To Create Album Art For iTunes
- Windows XP shortcuts on your keyboard
- Cache Poisoning
- How to change passwords?
Tutorials On









Leave a Reply