Помогите.
Адаптировать изображения.Чтоб при изменении разрешения изображения уменьшались и не обрезались.
Резиновый этот код сделать прошу.
В будущем буду знать как делать.
HTML
<div class="wrapper">
<div class="table">
<div class="row">
<div class="col igrinapc">1</div>
<div class="col igrinaxbox">2</div>
<div class="col igrinaps">3</div>
</div>
</div>
</div>
CSS
.wrapper{
width:100%;
}
.table{
display:table;
width:100%;
}
.row{
display:table-row;
}
.col{
display:table-cell;
border:1px solid black;
}
.igrinapc{
width:50%;
background: url(http://test1siegmein.ucoz.ru/images/igrinapk.jpg) no-repeat;
height: 600px;
}
.igrinaxbox{
width:40%;
background: url(http://test1siegmein.ucoz.ru/images/igrinaxbox.jpg) no-repeat;
height: 600px;
}
.igrinaps{
width:50%;
background: url(http://test1siegmein.ucoz.ru/images/irinaps.jpg) no-repeat;
height: 600px;
}