Как мне сделать приближение картинки при наведении на нее, если я ее добавляю в блок через background: url(); ?
Есть свойство transform: scale, но его можно применять, если картинка добавлена через html верстку, но мне надо добавлять ее через css. Помогите пожалуйста.
.block-1{
color: white;
height: 300px;
width: 1020px;
border-radius: 10px;
padding: 30px;
background: url(../img/block4.svg);
}
<div class="block-1 effect">
<div class="block_title">AMD</div>
<div class="block_text">Lorem Ipsum is simply dummy text of the printing and <br> typesetting industry. Lorem Ipsum has been the industry's <br> standard dummy text ever since the 1500s.</div>
</div>