Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> CSS

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 टेक्स्ट-ओवरफ़्लो प्रॉपर्टी

    टेक्स्ट-ओवरफ़्लो प्रॉपर्टी निर्धारित करती है कि ओवरफ्लो होने वाली सामग्री जो प्रदर्शित नहीं होती है, उसे उपयोगकर्ताओं को कैसे संकेतित किया जाता है। उदाहरण टेक्स्ट-ओवरफ़्लो का नमूना उदाहरण इस प्रकार दिखाया गया है <html>    <head>       <style>    

  1. CSS में राइटिंग-मोड प्रॉपर्टी

    राइटिंग-मोड प्रॉपर्टी का उपयोग यह निर्धारित करने के लिए किया जाता है कि टेक्स्ट की लाइनें क्षैतिज या लंबवत रूप से रखी गई हैं या नहीं। संपत्ति के मूल्य हैं - writing-mode: horizontal-tb|vertical-rl|vertical-lr; उदाहरण <!DOCTYPE html> <html> <head> <style> p {    writ

  1. CSS सूचक-घटनाएँ संपत्ति

    पॉइंटर-इवेंट प्रॉपर्टी निर्दिष्ट करती है कि क्या तत्व को कुछ कार्रवाई करनी चाहिए या नहीं जब उस पर पॉइंटर इवेंट ट्रिगर होता है। पॉइंटर ईवेंट को माउस क्लिक, टच, स्टाइलस, आदि द्वारा ट्रिगर किया जा सकता है। CSS में पॉइंटर-इवेंट प्रॉपर्टी दिखाने वाला कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <