Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
.div1 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../images/img_flwr.gif);
  background-repeat: no-repeat;
  background-size: contain;
}
.div2 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../images/img_flwr.gif);
  background-repeat: no-repeat;
  background-size: cover;
}
.div3 {
  border: 1px solid black;
  height: 120px;
  width: 150px;
  background: url(../images/img_flwr.gif);
  background-repeat: no-repeat;
}
</style>
</head>
<body>
<h1>Властивість background-size</h1>
<h2>background-size: contain:</h2>
<div class="div1">
<p>Lorem ipsum dolor sit amet.</p>
</div>
<h2>background-size: cover:</h2>
<div class="div2">
<p>Lorem ipsum dolor sit amet.</p>
</div>
<h2>Розмір фону не визначено:</h2>
<div class="div3">
<p>Lorem ipsum dolor sit amet.</p>
</div>
<p>Оригінальне зображення:</p>
<img src="../images/img_flwr.gif" alt="Квіти" width="224" height="162">
</body>
</html>