I am facing a simple issue that I need assistance with. I am attempting to use an anchor tag to navigate to a specific div on my website. While this works fine on my computer, when I try it on my phone, it does not scroll all the way to the bottom of the div like it does on the PC. This results in one of the images at the bottom of the div getting cut off. Just to let you know, I am using Chrome for these tests.
<style>
#aboutMe img{
position:absolute;
bottom:0;
}
</style>
<a href = '#aboutMe'>Click me</a>
<div id = 'aboutMe'>
<img src = 'someimage.png'>
</div>
Any assistance with this matter would be highly appreciated. Thank you in advance.