Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> p.a { white-space: nowrap; } </style> </head> <body> <h1>Example of using the CSS property white-space</h1> <p class="a"> It is an ordinary and very long text that is very inconvenient to read, as it is written in one line, and you have to scroll horizontally to read it. </p> </body> </html>