您的位置:首页 > Web前端 > BootStrap

bootstrap table关于排序列添加图标的方法--查漏补缺

2017-11-02 10:11 459 查看
style中设置如下:

 .fixed-table-container thead th .sortable{

    background-image:url('/image/sort.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px

    }

    .fixed-table-container thead th .asc{

    background-image:url('/image/sort_asc.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px

    }

    .fixed-table-container thead th .desc{

    background-image:url('/image/sort_desc.png');cursor:pointer;background-position:right;background-repeat:no-repeat;padding-right:30px

    }

其中图片url('/image/sort.png'),url('/image/sort_asc.png'):url('/image/sort_desc.png'),可以自己画啊

下面是我自己画的,路径什么的自己配好。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: