我是新的 Bootstrap ,我有一个要求,显示一个表与排序向上和向下箭头附近的表标题。这是我的表结构
<table class="table table-bordered table-striped">
<thead>
<tr>
<th><b>#</b> <i class='icon-arrow-up'></i><i class='icon-arrow-down'></th> **// tried**
<th ><b>Name</b></th>
<th><b>Email</b></th>
<th><b>Team</b></th>
<th ><b>Role</b></th>
<th ><b>Timezone</b></th>
<th><b>Connections</b></th>
<th><b># Posts available</b></th>
<th><b>Last Login</b></th>
<th><b>Posts</b></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
我希望显示与下图类似的向上/向下排序箭头。x1c 0d1x
请帮我解决这个问题,非常感谢您的帮助,谢谢。
3条答案
按热度按时间falq053o1#
您可以尝试使用FontAwesome。它包含排序图标(http://fontawesome.io/icon/sort/)。
为此,您需要
1.需要包括字体:
1.然后简单地使用fontawesome图标代替
th
中的默认引导图标:ekqde3dh2#
将此图标与 Bootstrap 一起使用(glyphicon):
http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_glyph_triangle-bottom&stacked=h
http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_ref_glyph_triangle-bottom&stacked=h
n6lpvg4x3#
** Bootstrap 4**
您可以使用以下组合
fa-sort-down, fa-sort-up