css position用法详解
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
<body>
<div style="height:50px;width:50px;background:#f00;"></div></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
</head>
<body> <div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
<div style="height:50px;width:50px;background:#0f0;"></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
嗯,上面几个问题你是否也遇到过呢?如果你至今还没有一个很好的解决办法,不妨继续阅读此文,或许能对你有所帮助:)
我们先看一下position属性的几个取值定义:
position: static、absolute、relative
static : 默认值。如果没有指定position属性,支持position属性的html对象都是默认为static,可以这么理解:把html页面看作一个文档流,源代码中各个标签的先后位置就是它们所对应的对象的呈现次序,所有取值为static的对象都按照你所编写的html标签的顺序依次呈现。
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
上面的表述不知道也许不是很清晰,具体的理解还是要自己亲自动手操作一下。
///////////////////////////////---------------插几句--------------------------/////////////////////////////
注:大家可以用下面的例子试下,这是我在看这篇文章时写的测试代码,大家可以把以下的这几个例子按顺序运行一下,相信之后就会明白作者的意思了
2.相对定位,如作者所言,是相对于它上一个元素,其实就是相对其在文档流中的默认位置的定位,设置相对后,跟在该元素后的元素的位置不发生任何变化,依然我行我素.
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
css position用法详解[转]
由于平时不太用到,所以过去写css的时候对于position属性的absolute、relative值理解比较模糊,对于z-index的层叠更是摸不着头脑,除了理解的因素外,各个浏览器的不同解析结果也是一个大问题。今天仔细阅读了一下css文档,总算是对盒模型的浮动、定位有了比较深刻的理解。
<style> *{margin:0;padding:0} </style>
</head>
<body> <div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
1.默认的显示,即static定位
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<style> *{margin:0;padding:0} </style>
</head>
absolute: 绝对定位。和relative不同的是,这个属性值会将当前对象拖出文档流,后面的对象会占有原来的位置,也就是说,当前对象的呈现是独立显示的,但是它的位置在指定top, left, right, bottom任一属性之前仍是有继承性的,这时的4个属性的取值是相对于浏览器的,和文档流无关了。如果把示例中的B区域设定为absolute而不指定 4个位置属性,通过设定margin来改变它的相对位置,用这个方法可以解决前面提到的问题2。
relative: 相对定位。这个属性值保持对象所在文档流中的位置,也就是说它具有和static相同的呈现方式,它同样占有在文档流中的固定位置,后面的对象不会侵占或覆盖;与static属性值不同的是,设置了relative的对象,可以通过top, left, right, bottom属性设定自己的新显示位置,这4个属性的取值是相对于文档流的前一个对象的,你可以自由设置这4个属性偏移到新的位置而不对文档流中的其他对象产生任何影响,原来的页面呈现仍然会我行我素.
这个例子也许看得更直接一点,你会看到后声明的绿色出现在了先声明的红色div的前பைடு நூலகம்
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<style> *{margin:0;padding:0} </style>
3.蓝色的div设置为绝对定位,但是由于还没有指定top, left, right, bottom任一属性,所以此时它的位置仍是有继承性的,还是在显示在其原来文档流中的位置
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<div style="height:50px;width:50px;background:#0f0;"></div>
<div style="position:absolute;height:50px;width:50px;background:#00f;"></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
提示: 属性值为absolute对象的z-index属性可以设置层叠显示的次序,它是直接有效的;
而属性值为relative对象的z-index属性在设置时要小心,把当前对象的z-index设置为-1是不行的,在firefox中它会无法显示(注意,不是说浏览器有误,而是指如果父对象是根元素body,那么z-index是无效的,任何z-index设置都不会显示在根元素之后,除了IE的解析bug,感谢#19提示),必须设置为0以上,我们如果想让别的对象挡住它,只有将其他对象也设置position为relative,并将z- index属性取一个比它大的值即可。
我们在实践中很有可能遇到这样的问题:
1、做一个横向导航,然后鼠标经过之后出现下拉菜单,那么这个下拉菜单的位置控制就是一个关键;
2、我们想在一个正常的页面布局中放入几个浮在页面上的气泡提示,这时既不想让气泡提示破坏正常的文档布局,又不想气泡提示的定位在不同的浏览器中到处乱飘。
3、当我们在一句正常的文本中插入一个小图标的话,一般会使用<img />标签,而这时它的垂直居中问题又是让人困惑,无论你使用html属性absmiddle、或是使用css属性vertical-align、抑或是使用父对象的heigh + line-height,在不同的浏览器中总会看起来不同。
<style> *{margin:0;padding:0} </style>
</head>
<body>
<div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
4.指定蓝色div的位置,再看效果:
<html >
<div style="height:50px;width:50px;background:#f00;"></div></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
</head>
<body> <div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
<div style="height:50px;width:50px;background:#0f0;"></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
嗯,上面几个问题你是否也遇到过呢?如果你至今还没有一个很好的解决办法,不妨继续阅读此文,或许能对你有所帮助:)
我们先看一下position属性的几个取值定义:
position: static、absolute、relative
static : 默认值。如果没有指定position属性,支持position属性的html对象都是默认为static,可以这么理解:把html页面看作一个文档流,源代码中各个标签的先后位置就是它们所对应的对象的呈现次序,所有取值为static的对象都按照你所编写的html标签的顺序依次呈现。
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
上面的表述不知道也许不是很清晰,具体的理解还是要自己亲自动手操作一下。
///////////////////////////////---------------插几句--------------------------/////////////////////////////
注:大家可以用下面的例子试下,这是我在看这篇文章时写的测试代码,大家可以把以下的这几个例子按顺序运行一下,相信之后就会明白作者的意思了
2.相对定位,如作者所言,是相对于它上一个元素,其实就是相对其在文档流中的默认位置的定位,设置相对后,跟在该元素后的元素的位置不发生任何变化,依然我行我素.
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
css position用法详解[转]
由于平时不太用到,所以过去写css的时候对于position属性的absolute、relative值理解比较模糊,对于z-index的层叠更是摸不着头脑,除了理解的因素外,各个浏览器的不同解析结果也是一个大问题。今天仔细阅读了一下css文档,总算是对盒模型的浮动、定位有了比较深刻的理解。
<style> *{margin:0;padding:0} </style>
</head>
<body> <div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
1.默认的显示,即static定位
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<style> *{margin:0;padding:0} </style>
</head>
absolute: 绝对定位。和relative不同的是,这个属性值会将当前对象拖出文档流,后面的对象会占有原来的位置,也就是说,当前对象的呈现是独立显示的,但是它的位置在指定top, left, right, bottom任一属性之前仍是有继承性的,这时的4个属性的取值是相对于浏览器的,和文档流无关了。如果把示例中的B区域设定为absolute而不指定 4个位置属性,通过设定margin来改变它的相对位置,用这个方法可以解决前面提到的问题2。
relative: 相对定位。这个属性值保持对象所在文档流中的位置,也就是说它具有和static相同的呈现方式,它同样占有在文档流中的固定位置,后面的对象不会侵占或覆盖;与static属性值不同的是,设置了relative的对象,可以通过top, left, right, bottom属性设定自己的新显示位置,这4个属性的取值是相对于文档流的前一个对象的,你可以自由设置这4个属性偏移到新的位置而不对文档流中的其他对象产生任何影响,原来的页面呈现仍然会我行我素.
这个例子也许看得更直接一点,你会看到后声明的绿色出现在了先声明的红色div的前பைடு நூலகம்
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<style> *{margin:0;padding:0} </style>
3.蓝色的div设置为绝对定位,但是由于还没有指定top, left, right, bottom任一属性,所以此时它的位置仍是有继承性的,还是在显示在其原来文档流中的位置
<html >
<head>
<meta http-equiv="content-type" content="text/html" charset="gb2312">
<div style="height:50px;width:50px;background:#0f0;"></div>
<div style="position:absolute;height:50px;width:50px;background:#00f;"></div>
<br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 <br />换行 </body> </html>
提示: 属性值为absolute对象的z-index属性可以设置层叠显示的次序,它是直接有效的;
而属性值为relative对象的z-index属性在设置时要小心,把当前对象的z-index设置为-1是不行的,在firefox中它会无法显示(注意,不是说浏览器有误,而是指如果父对象是根元素body,那么z-index是无效的,任何z-index设置都不会显示在根元素之后,除了IE的解析bug,感谢#19提示),必须设置为0以上,我们如果想让别的对象挡住它,只有将其他对象也设置position为relative,并将z- index属性取一个比它大的值即可。
我们在实践中很有可能遇到这样的问题:
1、做一个横向导航,然后鼠标经过之后出现下拉菜单,那么这个下拉菜单的位置控制就是一个关键;
2、我们想在一个正常的页面布局中放入几个浮在页面上的气泡提示,这时既不想让气泡提示破坏正常的文档布局,又不想气泡提示的定位在不同的浏览器中到处乱飘。
3、当我们在一句正常的文本中插入一个小图标的话,一般会使用<img />标签,而这时它的垂直居中问题又是让人困惑,无论你使用html属性absmiddle、或是使用css属性vertical-align、抑或是使用父对象的heigh + line-height,在不同的浏览器中总会看起来不同。
<style> *{margin:0;padding:0} </style>
</head>
<body>
<div style="position:relative;height:50px;width:50px;background:#f00;left:50px;top:50px;"></div>
4.指定蓝色div的位置,再看效果:
<html >