我有一个div;标头,另一个名为headerimg的图像。调整页面大小时,我试图使标题图像停留在标题的底部(水平线)。这是我的代码:
.header{
float:right;
width:93%;
height:100px;
padding-right:0px;
background-image:url('img/barhorizontal.gif');
background-repeat:repeat-x;
background-position:bottom;
postion:relative;
}
.headerimg{
bottom:0;
postion:absolute;
}
.headerimg img{
width:45%;
height:auto;
}
但这是行不通的。这是我的网站:Click
有什么帮助吗?
最佳答案
您拼错了position
。
you have: postion
change to: position
如何发现这样的事情?在浏览器中打开开发人员工具。至少在Chrome中,它旁边显示一个黄色小三角形,并且该线被划掉了。您看到错误“未知的属性名称”