The body tag of my website has a background image of a paper airplane. However, I'm facing an issue where the very tip of the image is being cut off in Chrome. Interestingly, resizing the browser window causes the full image to reappear.
This problem is isolated to Chrome and doesn't occur consistently. Sometimes refreshing the page or hovering over the image resolves the issue. Removing background styles such as background position and no-repeat displays the entire image, but it disrupts the positioning. The same issue persists on other pages of my website as well ().
Despite extensive debugging and searching, I haven't been able to find any references to this issue or possible fixes. Could this be a Chrome bug related to background-position?
Does anyone have any suggestions or workarounds? Thank you!
//EDITED// Below is the relevant code snippet, although it appears to be standard. The issue may be caused by something else on the site:
.home {
background: url("../img/airplane.jpg") no-repeat center;
background-size: 70%;
background-position: 10% 98%;
}