একটি উপাদানের ভিতরে টেক্সট মোড়ানো অক্ষম করতে, সাদা-স্পেস সম্পত্তি ব্যবহার করুন। হোয়াইট-স্পেস প্রপার্টি
বাস্তবায়ন করতে আপনি নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেনউদাহরণ
<!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>