-4

how can I add picture over another picture like this: enter image description here

Here is my HTML code:

<body>

    <div class="container-fluid">

        <p><a href="" class="as">Начало</a> <a href="" class="as">За нас</a> <a href="" class="as">Промоции</a> <a href="" class="as">Контакти</a></p>
        <p class="moto">Веднъж хапни, за цял живот се пристрасти!</p>

    </div>

and CSS code:

.container-fluid {

    height: 470px;
    background-image:linear-gradient(to bottom, black, black, transparent 70px, transparent 330px, black, black 500px),url("images.jpg");
    background-size: 100% 100%;


}
PetrovD
  • 43
  • 6

1 Answers1

-1

You might try using position, and also giving the image you want on top a z-index.