We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When setting .hidden-xs on a span, the span becomes a block element when visible on media, large and xlarge displays:
Example:
<span id="title"> Mr </span> <span id="first_name" class="hidden-xs"> Fred </span> <span id="last_name"> Blogs </span>
Output on mobile: Mr Blogs
Output on tablet and desktop: Mr Fred Blogs
Notice 'first_name' span has now become block level which (cause name to be split onto multiple lines)
The text was updated successfully, but these errors were encountered:
I think the BS code should be:
span.hidden-xs { display: inline !important; }
because SPAN is an inline element.
Sorry, something went wrong.
Please search next time—this is a dupe many times over. We're considering adding inline and/or inline-block toggles.
No branches or pull requests
When setting .hidden-xs on a span, the span becomes a block element when visible on media, large and xlarge displays:
Example:
Output on mobile:
Mr Blogs
Output on tablet and desktop:
Mr
Fred
Blogs
Notice 'first_name' span has now become block level which (cause name to be split onto multiple lines)
The text was updated successfully, but these errors were encountered: