I have a logo behind a text and everytime i modified a margin from another div it's change the position. First is from PUG and 2nd is from css
.column(span="row")
h1.first-title Bmw M4
img(src="asset/image/M-emblem.png", alt="").icon__M
img.icon__M{
max-width: 80px;
height: auto;
position: absolute;
z-index: 0;
right: 107px;
top: 177px;
}
I used it the position absolute for icon and relative for the div and z-index to place logo behind the text
Are you looking for something like this?
I use flexbox display to center the H1 text and background-image to add the logo.
Codepen: https://codepen.io/larrytherabbit/pen/gOMaBYy