Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to set the left position of a positioned element with JavaScript?
Use the left property to set the left position of a positioned element, such as a button.
Example
You can try to run the following code to set the left position of a positioned element with JavaScript −
<!DOCTYPE html>
<html>
<head>
<style>
#myID {
position: absolute;
}
</style>
</head>
<body>
<h1>Heading 1</h1>
<p>This is Demo Text.</p>
<button type="button" id="myID" onclick="display()">Change Left Position</button>
<script>
function display() {
document.getElementById("myID").style.left = "150px";
}
</script>
</body>
</html> Advertisements
