JSFiddle - React, Tailwind, and code Playground

by akshatsrivastava

HTML

<div id="trijeet">bwah</div>
<div id="ok"></div>

CSS

* { font-family: 'Roboto Light', 'Segoe UI Light'; padding: 10px; }
#trijeet {
    background: #9d2e2c;
    height: 200px;
    width: 600px;
    display: block;
}

#ok {
    font-size: 150%;
}

JavaScript

document.getElementById('ok').innerHTML = "^ BG = " + window.getComputedStyle(document.getElementById('trijeet'), null).backgroundColor;

document.getElementById('ok').innerHTML += "<br>& Height = " + document.getElementById('trijeet').offsetHeight + " (avec le padding)";