SOLVED: Centering an image

How would I center the green image in the middle?

.wrapg {
  position: relative;
  width: 606px;
  height: 344px;
  margin-top: 15px;
  cursor: pointer;
  border: 3px solid #0059dd;
  box-sizing: border-box;
  background: url("https://i.imgur.com/tSyAD0G.png") no-repeat 0 0;
}

I just figured it out.

background-position: center;

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.