CSS अतिप्रवाह:स्वतः , अतिप्रवाह . के विपरीत, केवल आवश्यकता होने पर स्क्रॉलबार जोड़ता है :स्क्रॉल . आप सीएसएस को लागू करने के लिए निम्नलिखित कोड को चलाने का प्रयास कर सकते हैं अतिप्रवाह:ऑटो संपत्ति:
उदाहरण
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; width: 250px; height: 45px; border: 2px solid blue; overflow: auto; } </style> </head> <body> <h1>Heading</h1> <div>Overflow property used here. This is a demo text to show the working of CSS overflow: auto. This won't hide the content. A scrollbar would be visible, only if needed.</div> </body> </html>
आउटपुट