요소 내부의 텍스트 줄 바꿈을 비활성화하려면 공백 속성을 사용하십시오. 공백 속성을 구현하기 위해 다음 코드를 실행할 수 있습니다.
예시
<!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>