jquery tablesorter CSS arrow icons

后端 未结 6 1404
离开以前
离开以前 2021-01-06 19:24

This is really more of a CSS question than a jQuery question. I\'m using the tablesorter jQuery plugin to sort tables dynamically.

Here\'s what it looks like curren

6条回答
  •  庸人自扰
    2021-01-06 19:50

    Place a span tag in your th and style it with:

    th.headerSortUp span {
        background: url("arrow-up.gif") right center no-repeat;
        padding-right: 15px;
    }
    

提交回复
热议问题