目录

style left 属性

示例

设置 <button> 元素的左侧位置:

document.getElementById("myBtn").style.left = "100px";
亲自试一试 »

描述

left 属性设置或返回定位元素的左侧位置。

该属性指定元素的左侧位置,包括内边距、滚动条、边框和边距。

提示:定位元素是位置属性设置为:相对、绝对或固定的元素。

提示:要设置或返回定位元素的正确位置,请使用正确的属性。


浏览器支持

Property
left Yes Yes Yes Yes Yes

语法

返回左边的属性:

object.style.left

设置左侧属性:

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


技术细节

默认值: 汽车
返回值: 一个 String,表示定位元素的左侧位置
CSS版本 CSS2

更多示例

示例

设置 <div> 元素的左侧位置:

document.getElementById("myDIV").style.left = "100px";
亲自试一试 »

示例

使用负值 - 设置 <div> 元素的左侧位置:

document.getElementById("myDIV").style.left = "-100px";
亲自试一试 »

示例

返回 <div> 元素的左侧位置:

alert(document.getElementById("myDiv").style.left);
亲自试一试 »

相关页面

CSS教程:CSS定位

CSS 参考:留下属性