One issue with the overflow setting is that scrolling down to reveal more content on the page would not work as intended. To address this, it is necessary to remove the white background from the image, which seems unnecessary, and consider making the background transparent after cropping, in case a different background color is desired.
The CSS code initially set the right value to 11; however, omitting a specific measurement unit (such as pixels or rem) for this property, as well as for width and height of the image, renders it ineffective. Furthermore, the declaration z-index: index [num] is incorrect syntax and should be simply z-index: [num].
The alt attribute of the image tag contains "png file," which is misleading. Instead, it should provide a description of the image or a link to it.
#copyright {
right: 11px;
}
#image {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) scale(.7);
z-index: -1;
}
body {
overflow: hidden;
}
<a href="https://lensdump.com/i/rSRDHc">
<img id="image" src="https://i3.lensdump.com/i/rSRDHc.png" alt="rSRDHc.png" border="0" /></a>
<div id="copyright"> ©apple </div>