Set the left position of a <button> element:
document.getElementById("myBtn").style.left = "100px";
Try it Yourself »
The left property sets or returns the left position of a positioned element.
This property specifies the left position of the element including padding, scrollbar, border and margin.
Tip: A positioned element is an element with the position property set to: relative, absolute, or fixed.
Tip: To set or return the right position of a positioned element, use the right property.
Property | |||||
---|---|---|---|---|---|
left | Yes | Yes | Yes | Yes | Yes |
Return the left property:
object.style.left
Set the left property:
object.style.left = "auto|
length|
%|initial|inherit"
Value | Description |
---|---|
auto | Lets the browser set the left position. This is default |
length | Defines the left position in length units. Negative values are allowed |
% | Sets the left position in % of the width of the parent element |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | auto |
---|---|
Return Value: | A String, representing the left position of a positioned element |
CSS Version | CSS2 |
Set the left position of a <div> element:
document.getElementById("myDIV").style.left = "100px";
Try it Yourself »
Using negative values - Set the left position of a <div> element:
document.getElementById("myDIV").style.left = "-100px";
Try it Yourself »
Return the left position of a <div> element:
alert(document.getElementById("myDiv").style.left);
Try it Yourself »
CSS tutorial: CSS Positioning
CSS reference: left property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!