जावास्क्रिप्ट में पृष्ठभूमि छवि का आकार सेट करने के लिए, पृष्ठभूमि आकार का उपयोग करें संपत्ति। यह आपको पृष्ठभूमि के लिए छवि का आकार निर्धारित करने की अनुमति देता है।
उदाहरण
पृष्ठभूमि छवि का आकार कैसे सेट करें, यह जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं:
<!DOCTYPE html> <html> <head> <style> #box { border: 2px dashed blue; width: 600px; height: 400px; background: url('https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg') no-repeat; } </style> </head> <body> <button onclick="display()">Set size of background image</button> <div id="box"> </div> <script> function display() { document.getElementById("box").style.backgroundSize = "150px 200px"; } </script> </body> </html>