I can't center my logo image in the middle of my gray background image

50 Views Asked by At

I can't get my logo to sit in the center of my gray background image. My logo will sit to the right of my gray background image or underneath, but it will not sit in the center of my gray image. I am building this application in React.js.

Picture of the problem

Picture of my code React.js

1

There are 1 best solutions below

0
On

The fist thing I've noticed is that you've used {position:relative;} in the background image, and that makes sense, but you've did the same to the other img which doesn't work, so the position of the second img should be {position: absolute;} then you can adjust the position using top, left, bottom and right , hope that helped.