$('.elements').each(function () {
var this_style = $(this).css('display');
if(typeof(this_style) === 'undefined' || this_style === null) {
console.log('нет элементов со свойстов display');
} else {
if (this_style == 'table-row') {
$(this).css('color','green');
} else {
$(this).css('color','red');
}
}
});
<div class="elements" style="display:table-row;">1</div>
<div class="elements">2</div>