div在位置后消失:相对

时间:2013-07-29 07:22:27

标签: css html

我正在尝试将图像放在容器内的右侧。但是,在我将父容器设置为position: relative;后,我的图像消失了。有任何想法吗?网站:http://andrewgu12.kodingen.com/。谢谢!

CSS:

.slide {
    padding-top: 138px;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: relative;
        box-shadow:inset 0px 10px 10px rgba(0,0,0,0.3); 
}
div#inner-container {
    text-align: left;
    width: 960px;
    margin: 0 auto;
    padding: 0;
    white-space: normal;
    position: relative;
}
div#name {
    right: 0;
    bottom: 200px;
    position: absolute;
}

HTML:

<div class="slide" id="home" data-slide="1" data-stellar-background-ratio="1">
        <div id="inner-container">
            <div id="name" clas="row">
                <img src="images/names.png">
            </div>                            
        </div>            
    </div>

2 个答案:

答案 0 :(得分:10)

它不会消失,它只是一直向上并且从显示器xD出来你必须记住,当你使用position: absolute时,对象将寻找具有position: relative到的父级定位本身。将position: relative添加到div#inner-container后,它会更改div#name.row引用。也许将height: 100%;添加到父div可能会为您想要的工作做点什么?

答案 1 :(得分:1)

试试这个:

div#name {
    position:fixed;
    right: 0px;
    bottom: 200px;

}