How to center an image in CSS?

try this:

background-image: url("url");
background-repeat: no-repeat;
background-size: cover;
background-position: center; 

if i understood correctly you want this image to be background of some section on your page. If that is the case this should work.

1 Like