Javascript examples for CSS Style Property:borderRightWidth
Get the width of the right border of a <div> element:
<!DOCTYPE html> <html> <body> <div id="myDiv" style="border-right:thick solid red">This is a div element.</div> <br> <button type="button" onclick="myFunction()">Return the width of the right border</button> <script> function myFunction() {/* w ww . j a v a 2 s . c o m*/ console.log(document.getElementById("myDiv").style.borderRightWidth); } </script> </body> </html>