I have a quote that I would like to integrate into my website.
I've tried to place the quote picture before, but as soon as I zoomed out, the quote picture didn't stay in the same place.
I used the
position : absolute
.
This is my script :
div#quote-layer {
background-color: rgba(255,255,255,0.25);
margin-top: 0px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
padding : 25px;
width: 450px;
}
div#open-quote {position: absolute;
left: 666px;
top: 600px;
}
div#quote-layer p {
text-align: center;
}
<div id="quote-layer">
<div id="open-quote">
<img src="img/quotes.svg" width="100" height="100">
</div>
<p>
my extremely beautiful quote !
</p>
</div>
I would find a better way to do it ! Thanks !