Forum Moderators: not2easy
<b style="width: 320px">Blah blah blah</b>
<i>(foo bar)</i> <style>
.nowrap { white-space: nowrap }
</style>
<b class="nowrap" style="width: 320px">Blah blah blah</b>
<i class="nowrap">foo bar</i> <style>
article { width: 150px; border: 1px solid #800 }
</style>
<article>
<b>Blah blah blah</b><wbr>
<i>(foo bar)</i>
</article> Would I need to use it in conjunction with white-space: nowrapYes. A <wbr> overrides the nowrap. The CSS term "white-space" is misleading anyway, since it really means "anything that would normally be treated as breakable", like a dash or hyphen, not only \s spaces.