JSFiddle - React, Tailwind, and code Playground
HTML
<i style="top:1px;">1px</i><br/>
JavaScript
$('i').each(function() {
var top = $(this).css('top');
alert(top);
if(top == '1px') $(this).css('color','1px');
});
<i style="top:1px;">1px</i><br/>
$('i').each(function() {
var top = $(this).css('top');
alert(top);
if(top == '1px') $(this).css('color','1px');
});