<div class="container">
<div class="item">
<h2>Лиса без фона</h2>
<img src="https://thypix.com/wp-content/uploads/2020/05/fox-13-700x652.png" alt="">
</div>
</div>
* {
margin: 0;
padding: 0;
}
.container {
width: 640px;
height: 480px;
display: flex;
align-items: center;
justify-content: center;
background: url(https://s1.1zoom.ru/big7/460/Forests_Grass_Trees_Rays_386102.jpg);
background-size: cover;
padding-right: 40px;
position: relative;
}
img {
display: block;
max-width: 100%;
position: relative;
margin-left: 100px;
}
.item {
max-width: 480px;
}
h2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-100%, -50%);
margin-left: 50px;
margin-top: 25px;
filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.9));
font-size: 2.4rem;
white-space: pre;
font-family: sans-serif;
font-weight: bolder;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.