Get the border property values of a <div> element: - Javascript CSS Style Property

Javascript examples for CSS Style Property:border

Description

Get the border property values of a <div> element:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<div id="myDiv" style="border:1px solid red;">This is a div element.</div>
<br>
<button type="button" onclick="myFunction()">Return border</button>

<script>
function myFunction() {// w w  w.  jav a2  s  .  c o m
    console.log(document.getElementById("myDiv").style.border);
}
</script>

</body>
</html>

Related Tutorials