Put div in the same place with different screen sizes

Asked

Viewed 129 times

1

The goal is to stay at the bottom of the div on any screen size

.image {
opacity: 1;
display: block;
width: 100%;
margin-left: -16px;
height: auto;
transition: .5s ease;
backface-visibility: hidden;}

.middle {
transition: .5s ease;
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);}

.container-fluid:hover .middle {
opacity: 1;}
.text {
background-color: #333333;
color: white;
font-size: 16px;
margin-top: 662px;
padding: 30px 200px;}
<div class="container-fluid">
    <img src="imgs/3.jpg" alt="Avatar" class="image" style="width:101.65%; opacity: 0.8;">
    <div class="middle">
        <div class="text">Hello World</div>
    </div>
</div>

  • Select all the source code after click on the button { } to format it

  • Already this as requested

  • @Maröb in your project there is some restriction on using Bootstrap ?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.