Is there a way to prevent the class visible-lg
from causing the span element to move to a new line?
When using the following HTML code, the content displays on a single line:
<p>Device is:<span>Unknown</span></p>
However, when utilizing the following HTML code, the text for Large
appears below the text for Device is
:
<p>Device is:<span class="visible-lg">Large</span></p>