Hello!

I'd like to set a css property on every table, that have
style="table-layout: fixed" attribute. I tried this, but don't works:

$('table[style="table-layout: fixed"]').css('background-color','#DD0000');

With id attribute works:

$('table[id="mytable"]').css('background-color','#DD0000');

But i don't want to add id-s in tables. How can i solve this like first example?

Thanks you!

Lay

Reply via email to