Atmosphere Temperature by Altitude

by stitot

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>

<div id="test">

</div>

CSS

#test {
    height: 100px;
    border: 2px solid red;
}

JavaScript

const el = document.querySelector('#test');
const computedStyles = getComputedStyle(el);

console.log(
   'getStyle', Highcharts.getStyle(el, 'border-top-width'),
   'getComputedStyle', computedStyles.getPropertyValue('border-top-width')
);