Hey there, I would appreciate it if you could refrain from criticizing me or giving me negative feedback as I have put in the effort to search for an answer. After extensive research, this is what I have found so far. My goal is to set a background image for my body element and prevent it from repeating, but instead of stretching, it just displays a single tile. I have tried various methods to make it stretch without success. I even checked YouTube tutorials and looked through other resources.
This is the code I am currently using:
body{
background-image: url(https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRQoLWn_NOGkZO2BIkZyQud4OmegjxPMctGAZQAlKSf1DJvmsLyvA);
background-repeat:no-repeat;
}
Here is a snippet of my HTML:
<html>
<body>
<div id="container">
</div>
</body>
</html>