Text with no wrap https://www.w3schools.com/cssref/pr_text_white-space.asp https://www.w3schools.com/cssref/tryit.asp?filename=trycss_text_white-space
<!DOCTYPE html>
<html>
<head>
<style>
p {
white-space: nowrap;
}
</style>
</head>
<body>
<p>
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
This is some text. This is some text. This is some text.
</p>
</body>
</html>