Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/40.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 更改引导表中的排序图标_Html_Css_Twitter Bootstrap_Bootstrap Table - Fatal编程技术网

Html 更改引导表中的排序图标

Html 更改引导表中的排序图标,html,css,twitter-bootstrap,bootstrap-table,Html,Css,Twitter Bootstrap,Bootstrap Table,可以更改排序图标: 在新的演示和默认情况下,引导表带有丑陋的非视网膜图标: 您可以尝试自定义css样式,例如: .fixed-table-container thead th .both { background-image: none; } .fixed-table-container thead th .asc { background-image: url(asc.png); } .fixed-table-container thead th .desc {

可以更改排序图标:

在新的演示和默认情况下,引导表带有丑陋的非视网膜图标:


您可以尝试自定义css样式,例如:

.fixed-table-container thead th .both {
    background-image: none;
}

.fixed-table-container thead th .asc {
    background-image: url(asc.png);
}

.fixed-table-container thead th .desc {
    background-image: url(desc.png);
}
JSIDLE链接: