JSFiddle - React, Tailwind, and code Playground

HTML

<div id="box_01">Здесь располагается text</div>

CSS

#box_01 {
	background-color:#CCCCCC;
	display:block;
	width:255px;
	height:42px;
	border:1px solid;
    text-align:center;
}

JavaScript

function info(elem) {
    var stl = elem.currentStyle || window.getComputedStyle(elem);
    alert('border : ' + stl.borderLeftWidth + ' ' + stl.borderLeftStyle +
          '\nfontSize : ' + stl.fontSize +
          '\nwidth : ' + stl.width
    );
}
document.getElementById('box_01').onclick = function(e){
    info(this);
}