요소의 올바른 위치를 설정하려면 JavaScript의 right 속성을 사용하세요.
예시
다음 코드를 실행하여 JavaScript로 위치 지정 요소의 올바른 위치를 설정할 수 있습니다 -
<!DOCTYPE html> <html> <head> <style> #box { width: 350px; height: 200px; background-color: orange; border: 3px solid red; position: absolute; } </style> </head> <body> <p>Click to set the right position.</p> <button type = "button" onclick = "display()"> Set Right Position </button> <div id="box"> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> <p>This is a div. This is a div. This is a div. This is a div.<p> </div> <br> <br> <script> function display() { document.getElementById("box").style.right = "70px"; } </script> </body> </html>