किसी तत्व के अंदर टेक्स्ट रैपिंग को अक्षम करने के लिए, व्हाइट-स्पेस प्रॉपर्टी का उपयोग करें। व्हाइट-स्पेस प्रॉपर्टी को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं
उदाहरण
<!DOCTYPE html> <html> <head> <style> p { white-space: nowrap; } </style> </head> <body> <p> This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is some text. This is demo text. </p> </body> </html>