JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" tabindex="11" style="tabindex: 12; display: block;"/>
JavaScript
var test = document.getElementsByTagName("input")[0];
var style = window.getComputedStyle(test);
var value = style.getPropertyValue('display');
alert(value);