Scale image to container
by Cem Firat
HTML
<div class="container image"></div>
CSS
.container{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
}
.image{
background-image: url('https://tcokchallenge.com/launch2/media/slides/488835087.jpg?1111926855');
width: 100%; height: 100%;
background-size: cover;
background-repeat: none;
}