CSS Background image no-repeat

  • Post category:CSS

Get the code of CSS Background image no-repeat 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="tree"></div>
.tree {
  width: 500px;
  height: 500px;
  background-size: 100px 100px;
  background-repeat: no-repeat;
  background-image: url("https://cdn.pixabay.com/photo/2017/04/03/10/32/nature-2197934_1280.png");
}