JSFiddle - React, Tailwind, and code Playground
by nerdess
CSS
body {
background: red;
border-top: 20px solid blue;
}
JavaScript
//it is impossible to get the border-top
console.log($$('body')[0].getStyle('background-color')); //works fine as expected rgb(255, 0, 0)
console.log($$('body')[0].getStyle('border-top-width')); //wtf...we get an empty string