0

我有一个标题 1(#banner h1.index_banner_text),它需要始终位于距页面底部 20px 和距页面左侧 570px 的位置。如果调整窗口大小,我希望标题自然堆叠,但始终与页面底部保持 20px 的距离。我知道,要让它位于底部,它需要在一个容器中(#banner .text),但是当我创建该容器时,如果宽度延伸太远有问题。我已经解决了几个小时的问题,如果有人有任何见解,那就太好了。目前,我的#banner .text 容器的宽度为 40%,因为这意味着它不会在我的窗口上创建一个巨大的水平滚动条,但它不是全宽并且标题堆叠太短。

这些元素也位于 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;  
    }
4

1 回答 1

0

just put a bottom:20px; in the right css div and it will always stay 20px from the bottom

于 2013-05-22T14:21:40.687 回答