CSS Background image position

  • Post category:CSS

Get the code of CSS Background image position and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<div class="plant"></div>
.plant {
  width: 250px;
  height: 250px;
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("https://cdn.pixabay.com/photo/2017/04/03/10/32/nature-2197934_1280.png");
}