Is there a way to select the TR
with 2 TD's
in it?
I want to achieve it using pure css. I will use jQuery or javascript, but i want to make sure that this is absolutely not possible using plain CSS before moving to jQuery
For example in jQuery, you have
$("tr").each(function(){
if($(this).children().find("td").length==2){
$(this).css({some properties});
}
})
Can something similar to this be achieved using CSS
?