কম্পিউটার

সিএসএস সহ ব্যবহারকারীদের কাছে কীভাবে উপচে পড়া সামগ্রী প্রদর্শিত হয় না তা নির্ধারণ করুন


টেক্সট-ওভারফ্লো প্রপার্টি ব্যবহার করা হয় কিভাবে ওভারফ্লো হওয়া বিষয়বস্তু যা প্রদর্শিত হয় না তা সিএসএস ব্যবহারকারীদের কাছে সংকেত দেওয়া হয়।

উদাহরণ

আপনি CSS-এ একটি টেক্সট-ওভারফ্লো প্রপার্টি বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:

<html>
   <head>
      <style>
         p.text1 {
            white-space: nowrap;
            width: 200px;
            border: 1px solid #000000;
            overflow: hidden;
            text-overflow: clip;
         }
         p.text2 {
            white-space: nowrap;
            width: 200px;
            border: 1px solid #000000;
            overflow: hidden;
            text-overflow: ellipsis;
         }
      </style>
   </head>
   <body>
      <b>Original Text:</b>
      <p>Tutorials Point originated from the idea that there exists a class of
      readers who respond better to online content and prefer to learn new skills at
      their own pace from the comforts of their drawing rooms.</p>
      <b>Text overflow:clip:</b>
     
      <p class = "text1">Tutorials Point originated from the idea that there exists
      a class of readers who respond better to online content and prefer to learn
      new skills at their own pace from the comforts of their drawing rooms.</p>
      <b>Text overflow:ellipsis</b>
     
      <p class = "text2">Tutorials Point originated from the idea that there exists
      a class of readers who respond better to online content and prefer to learn
      new skills at their own pace from the comforts of their drawing rooms.</p>
   </body>
</html>

আউটপুট

সিএসএস সহ ব্যবহারকারীদের কাছে কীভাবে উপচে পড়া সামগ্রী প্রদর্শিত হয় না তা নির্ধারণ করুন


  1. কিভাবে CSS দিয়ে একটি hr উপাদান স্টাইল করবেন?

  2. কিভাবে CSS দিয়ে লেবেল স্টাইল করবেন?

  3. কিভাবে CSS দিয়ে স্ক্রলবার লুকাবেন?

  4. কিভাবে CSS দিয়ে তীর তৈরি করবেন?