কম্পিউটার

CSS ওভারফ্লো:লুকানো


CSS ওভারফ্লো প্রপার্টিতে লুকানো মানের সাথে , ওভারফ্লো ক্লিপ করা হয়. বিষয়বস্তু লুকিয়ে রাখে। আপনি CSS overflow:hidden বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন সম্পত্তি -

উদাহরণ

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            background-color: orange;
            width: 250px;
            height: 35px;
            border: 2px solid blue;
            overflow: hidden;
         }
      </style>
   </head>
   <body>
      <h1>Heading</h1>
      <div>Overflow property used here. This is a demo text to show the working of CSS overflow: hidden. This hides the content.</div>
   </body>
</html>

আউটপুট

CSS ওভারফ্লো:লুকানো


  1. CSS ওভারফ্লো:স্বয়ংক্রিয়

  2. CSS ওভারফ্লো:স্ক্রোল

  3. CSS ওভারফ্লো প্রপার্টি নিয়ে কাজ করা

  4. CSS অ্যানিমেশন দ্বারা লুকানো উপাদান প্রকাশ করা