CSS定位问题
关于绝对定位
绝对定位是相对于父级元素的绝对,不是相对于整个页面的绝对
相对定位是相对于块级元素(或行内块)自身位置进行定位
position: absolute;
top: 231px;
left: 490px;
关于移除(隐藏)文字
text-indent: -999px; /*表示将块内文字左移动999px*/
overflow: hidden; /*隐藏溢出的元素*/
关于设置background,需要设置一下大小
background: url("guide11.png") center top;
width: 745px;
height: 329px;
一些习惯
清零
*{
margin: 0;
padding: 0;
}
避免一些麻烦
html{
height: 100%;
}
body{
height: 100%;
background: url("body.png") center top;
width: 100%;
}
网友评论