当前位置: 首页 > 网络学院 > 网页制作基础教程 > CSS > CSS left属性

CSS
CSS 介绍
CSS 语法
使用 CSS
CSS 背景
CSS 文字
CSS 字体
CSS 边框
CSS 边距
CSS 填充
CSS 列表
CSS 尺寸
CSS 类别
CSS 定位
CSS 伪类
CSS 伪元素
CSS2 Media类型
CSS 摘要
CSS 实例
CSS2 参考资料
CSS2 打印

CSS left属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 380 ::
收藏到网摘: n/a

The left property specifies the left edge of an element.
left属性将指定与其最近一个具有定位设置的父对象左边相关的位置

Note: If the "position" property has a value of "static", the "left" property has no effect.
注意:如果"position"属性的值为"static",那么"left"属性就不会起效果了

Inherited: No
继承性:无

举例

This example sets the left edge of the paragraph 20 px to the right of the left edge of the window:
这个举例会让段落放置在离窗口左边,并向右20px的地方:
p
{
position: absolute;
left: 20px
}

This example sets the left edge of the paragraph 20 px to the left of the left edge of the window:
这个举例会让段落放置在离窗口左边,并向左20px的地方:
p
{
position: absolute;
left: -20px
}

可用值

描述
auto Lets the browser calculate the left position
让浏览器来决定左定位
% Sets the left position in % from the left edge of the window
以百分比的形式来设置左定位。
length Sets the left position in px, cm, etc. from the left edge of the window. Negative values are allowed
用px,cm等一些单位来设置左定位。可以用负数。

评论 (0) All

登陆 | 还没注册?