কম্পিউটার

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>

আউটপুট

CSS টেক্সট-ওভারফ্লো সম্পত্তি


  1. CSS বর্ডার-নিচে-ডান-ব্যাসার্ধ সম্পত্তি

  2. CSS টেক্সট-ওভারফ্লো সম্পত্তি

  3. CSS-এ লেখা-মোড সম্পত্তি

  4. CSS পয়েন্টার-ইভেন্ট সম্পত্তি