I have an interactive webpage.
The body element has a background image. As soon as new elements are added on the page, the image stretches and I don't want this behaviour.
How do I get this fixed.
<style>
body {
background-image : url(./image.jpg);
background-size: cover;
}
</style>
<body>
<section>
... dynamic elements
</section>
</body>