CSS ওভারফ্লো:স্বয়ংক্রিয় , শুধুমাত্র প্রয়োজন হলেই একটি স্ক্রলবার যোগ করে, ওভারফ্লো এর বিপরীতে :স্ক্রোল . আপনি CSS overflow:auto প্রয়োগ করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন সম্পত্তি:
উদাহরণ
<!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>
আউটপুট