किसी एलीमेंट के अंदर व्हाइट-स्पेस के साथ काम करने के लिए व्हाइट-स्पेस प्रॉपर्टी का इस्तेमाल करें:
उदाहरण
<!DOCTYPE html> <html> <head> <style> p.demo1 { white-space: normal; } p.demo2 { white-space: pre; } </style> </head> <body> <h2>Control white-space</h2> <p class = "demo1"> This is demo text. This is demo text. </p> <p class = "demo2"> This is demo text. This is demo text. </p> </body> </html>