I\'d like to keep a line of text together such that either the whole line drops down a line or none at all
Acceptable
How do I wrap this
You can use white-space: nowrap; to define this behaviour:
white-space: nowrap;
// HTML:
.nowrap { white-space: nowrap ; }
How do I wrap this line of text - asked by Peter 2 days ago
// CSS: .nowrap { white-space: nowrap ; }