How to prevent line breaks in list items using CSS?
I'm trying to put a link called *Submit resume* in a menu using a `li` tag. Because of the whitespace between the two words it wraps to two lines. How to prevent this wrapping with CSS?
Using the "nowrap" value for the white-space property in CSS, you can prevent line breaks from occurring in your menu. Style the list-item with these properties and values.