私は1つの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;
}
しかし、それは機能しません。これが私のウェブサイトです:クリック
何か助けはありますか?