position属性及实现图片垂直居中

转自: http://blog.onlygrape.com/position/186

 

定义
position 属性把元素放置到一个静态的、相对的、绝对的、或固定的位置中。

span>position版本:CSS2  兼容性:IE4+ NS4+ 继承性:无br>


语法:
position : static | absolute | fixed | relative

 


参数:
static:默认。它始终会处于页面流给予的位置(static 元素会忽略任何 top、bottom、left 或 right 声明)。

relative:位置被设置为 relative 的元素,可将其移至相对于其正常位置的地方,因此 “left:20″ 会将元素移至元素正常位置左边 20 个像素的位置。

absolute:位置设置为 absolute 的元素,可定位于相对于包含它的元素的指定坐标。此元素的位置可通过 “left”、”top”、”right” 以及 “bottom” 属性来规定。

fixed:位置被设置为 fixed 的元素,可定位于相对于浏览器窗口的指定坐标。此元素的位置可通过 “left”、”top”、”right” 以及”bottom” 属性来规定。不论窗口滚动与否,元素都会留在那个位置。工作于 IE7(strict 模式)。


HTML定位规则
absolute :  将对象从文档流中拖出,使用left, right, top, bottom 等属性进行绝对定位。而其层叠通过z-index属性定义。此时对象不具有边距,但仍有补白和 边框
relative :  对象不可层叠,但将依据left,right, top, bottom等属性在正常文档流中偏移位置
fixed :  IE5.5及NS6尚不支持此属性


图片垂直居中代码:

<! DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd“ >
< style  type =”text/css” >
<!–
{ margin : 0 ; padding : 0 }
div 
{
 width
: 500px ;
 height
: 500px ;
 line-height
: 500px ;
 border
: 1px solid #ccc ;
 overflow
: hidden ;
 position
: relative ;
 text-align
: center ;
 
}
div p 
{
 position
: static ;
 +position
: absolute ;
 top
: 50% ;
 vertical-align
: middle
 
}
img 
{
 position
: static ;
 +position
: relative ;
 top
: -50% ; left : -50% ;
 width
: 276px ;
 height
: 110px ;
 vertical-align
: middle
 
}
–>
</ style >
< div >< p >< img  src =”http://www.google.com/intl/en/images/logo.gif”  /></ p ></ div >


 

你可能感兴趣的:(position)