I'm looking to make my webpage more dynamic and interactive.
One issue I have is that the background image of the body element stretches when new elements are added, which is not the desired behavior.
Any suggestions on how I can fix this?
<style>
body {
background-image : url(./image.jpg);
background-size: cover;
}
</style>
<body>
<section>
... dynamic elements
</section>
</body>