xxxxxxxxxx
/* For elements within a container */
.container {
white-space: nowrap;
}
/* For specific elements */
.element {
white-space: nowrap;
}
xxxxxxxxxx
/* If you don't know why your line is breaking or you just want to make sure
this doesn't happen, add the CSS bellow: */
white-space: nowrap;
/* Example: */
/* HTML: */
<p>This is a paragraph<p>
/* CSS: */
p { white-space: nowrap; }