Để tắt gói văn bản bên trong một phần tử, hãy sử dụng thuộc tính khoảng trắng. Bạn có thể thử chạy mã sau để triển khai thuộc tính khoảng trắng
Ví dụ
<!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>