কম্পিউটার

CSS শব্দ বিরতি সম্পত্তি


শব্দ-ব্রেক প্রপার্টি লাইন ভাঙতে ব্যবহৃত হয়।

উদাহরণ

নিম্নলিখিত কোডটি শব্দ ভাঙার নমুনা কোড দেখায়:

<html>
   <head>
      <style>
         p.text1 {
            width: 140px;
            border: 1px solid #000000;
            word-break: keep-all;
         }
         p.text2 {
            width: 140px;
            border: 1px solid #000000;
            word-break: break-all;
         }
      </style>
   </head>
   <body>
      <b>line break at hyphens:</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>line break at any character</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 গ্রিড-অটো-ফ্লো প্রপার্টির ব্যবহার