how to make text on one line css code example
Example 1: css display text in one line
white-space: nowrap;
Example 2: write text in one line css
.garage-title {
clear: both;
display: inline-block;
overflow: hidden;
white-space: nowrap;
}