标题颜色应更改为其他颜色

时间:2012-03-20 09:10:05

标签: css css3 css-float

我有一个没有宽度的表格数据。当我在触摸浏览器结束时有多个列时,标题颜色应该更改为其他颜色。这可能与CSS?还是用css表达式? http://jsfiddle.net/AGrJJ/

1 个答案:

答案 0 :(得分:0)

这是jquery JS的简单小提琴

http://jsfiddle.net/HerrSerker/AGrJJ/2/

​$('th').each(function() {
    if ($(this).offset().left + $(this).width() > $('body').width()) {
        $(this).css('backgroundColor', 'yellow');
    }
})​​