স্ক্রোল মান সহ CSS ওভারফ্লো বৈশিষ্ট্যে , ওভারফ্লো ক্লিপ করা হয় এবং একটি স্ক্রলবার যোগ করা হয়। এটি ব্যবহারকারীকে সম্পূর্ণ বিষয়বস্তু পড়তে দেয়৷
৷উদাহরণ
আপনি CSS overflow:scroll বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন সম্পত্তি -
<!DOCTYPE html> <html> <head> <style> div { background-color: orange; width: 250px; height: 45px; border: 2px solid blue; overflow: scroll; } </style> </head> <body> <h1>Heading</h1> <div>Overflow property used here. This is a demo text to show the working of CSS overflow: scroll. This won't hide the content. Now a scrollbar will be visible.</div> </body> </html>
আউটপুট