CSS में टेक्स्ट ट्रांसफ़ॉर्मेशन के लिए, टेक्स्ट-ट्रांसफ़ॉर्म प्रॉपर्टी का इस्तेमाल निम्न मानों के साथ करें -
text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { line-height: 1.9; text-transform: uppercase; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>This is demo text.<br> This is another demo text. </p> </div> </body> </html>
आउटपुट
उदाहरण
आइए एक और उदाहरण देखें -
<!DOCTYPE html> <html> <head> <style> div { text-transform: lowercase; } </style> </head> <body> <h1>Demo Heading</h1> <div> <p>THIS is demo text.<br> This is ANOTHER demo text. </p> </div> </body> </html>
आउटपुट