x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
    img {
6
        position: absolute;
7
        clip: rect(0,165px,45px,0);
8
    }
9
</style>
10
</head>
11
<body>
12
13
<h1>The clip Property</h1>
14
15
<img src="https://webtutor.dev/images/logo.png" width="256" height="44">
16
17
</body>
18
</html>