Javascript examples for CSS Style Property:right
Return the right position of a <div> element:
<!DOCTYPE html> <html> <body> <div id="myDiv" style="position:absolute;right:15px;">This is a div element.</div> <button type="button" onclick="myFunction()">Return right position of div</button> <script> function myFunction() {//w w w . jav a 2s . c om console.log(document.getElementById("myDiv").style.right); } </script> </body> </html>