【问题标题】:How can i prevent to get next line in bootstrap panel right icon for the mobile view如何防止在移动视图的引导面板右侧图标中获取下一行
【发布时间】:2017-07-06 08:01:04
【问题描述】:
这是桌面版和移动版的图片 - here
但我想要右上角的打印图标。我不希望它移到下一行。如果屏幕尺寸减小,那么我想要like 这个。
代码:
<h5 id="name">
<span class="fa fa-graduation-cap"></span>
Name of Company Name of the company
<span class="glyphicon glyphicon-print pull-right"></span>
</h5>
【问题讨论】:
标签:
twitter-bootstrap
panel
【解决方案1】:
试着把它变成这样:
<h5 id="name">
<div class="col-xs-9">
<span class="fa fa-graduation-cap"></span>
Name of Company Name of the company
</div>
<div class="col-xs-3">
<span class="glyphicon glyphicon-print pull-right"></span>
</div>
</h5>