CSS Background Image Generator

A background image property is used to manipulate and set an element's background using an image.

Preview

Properties

Code

.element {
  width: 600px;
  height: 250px;
  background-color: #999999;
  background-image: url("https://htmlcss.tools/img/cute_cat.jpeg");
  background-position: center;
  background-size: auto;
  background-repeat: repeat;
}