我有一个标题1(#banner h1.index_banner_text),它需要始终位于距离页面底部20px和页面左侧570px的位置。如果调整窗口大小,我希望标题自然堆叠,但始终保持距离页面底部20px。我理解,要让它位于底部,它需要在一个容器(#banner .text)中,但是当我创建该容器时,如果宽度问题延伸得太远。如果有人有任何见解,那我几十个小时都很难拍这个,这会很棒。目前,我有#40%宽度的#banner .text容器,因为这意味着它不会在我的窗口上创建一个巨大的水平滚动条,但它不是全宽并且标题堆叠太短。
元素也位于100%宽度和高度背景渐变横幅内。 (可能有助于解决问题)
/*banner h1 container*/
#banner .text{
position:relative;
z-index:50;
left:570px;
height:1125px;
width:40%;
}
/*banner h1*/
#banner h1.index_banner_text{
position:absolute;
bottom:20px;
font-family: 'Museo300Regular';
font-size:43.8px;
text-shadow:1px 1px 2px #000;
color:#e7e7e7;
}
/*background fading css*/
#banner{
height:100%;
width:100%;
z-index:1;
position:relative
}
#banner .wrapper .background{
position:fixed;
/*left:50%;*/
right:0;
top:0;
z-index:1;
}
#banner .wrapper{
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
z-index:2;
display:none;
}
#banner .wrapper.active{
display:block;
z-index:3;
}
#banner .wrapper.fading{
z-index:4;
}
答案 0 :(得分:0)
只需将bottom:20px;
放入正确的css div中,它将始终保持距离底部20px