div盒子的层叠怎么进行

img


怎么把下面的文字的div盒子放到上面背景的div盒子呀
背景div盒子的HTML:


.eight{
    background: url(images/20大热议2.jpg) no-repeat top center;
    height: 600px;
    min-height: 1px;
    width: 1900px;
    margin: 0 auto;
    position: relative;
    pointer-events:none;

文字div盒子的css

.ninth ul li a{
    text-decoration: none;
    color:rgb(195, 47, 47);
    font-family:\9ED1\4F53 ;
    font-size: 25px;
    padding-left: 150px;
    list-style: none;
    padding: 2px 3px;
    margin-top: 300px;
    margin-left: 50px;
    text-align: center;
    text-decoration: none;


}



元素定位操作可以实现,子绝父相,大盒子相对单位,里面嵌套的小盒子绝对定位


<div 这边弄图片背景>
<div>文字放这里</div>
</div>