<html>
<body>
<div id="myDiv" style="border-bottom:thick solid red">This is a div element.</div>
<br>
<button type="button" onclick="myFunction()">Return the width of the bottom border</button>
<script>
function myFunction() {
alert(document.getElementById("myDiv").style.borderBottomWidth);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_style_borderbottomwidth3 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:05:52 GMT -->
</html>