When I apply position:absolute to prevent the elements from moving when zooming in and out of the page, they all end up congregating in one place. Can anyone help me with this issue? None of the solutions I've found have worked so far. I'm developing a website where the div elements keep shifting around as I zoom in and out.
<style>
/* CSS Styles */
#changepos{
position:relative;
top:-250px;
}
#readmore{
position:relative;
top:-260px;
right:380px;
text-decoration-line:none;
border-radius:20px;
}
... (and more CSS)
</style>
<!DOCTYPE HTML>
<html lang="en">
// HTML content
...
</html>