Javascript examples for CSS Style Property:bottom
Set the bottom position of a <div> element:
<!DOCTYPE html> <html> <head> <style> #myDIV {/*from w w w . j a v a 2 s.com*/ position: absolute; width: 100px; height: 100px; background-color: coral; color: white; } </style> </head> <body> <button onclick="myFunction()">Test</button> <div id="myDIV"> <h1>myDIV</h1> </div> <script> function myFunction() { document.getElementById("myDIV").style.bottom = "10px"; } </script> </body> </html>