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

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 ग्रिड-क्षेत्र संपत्ति

    ग्रिड-क्षेत्र गुण का उपयोग करके ग्रिड-पंक्ति-प्रारंभ, ग्रिड-स्तंभ-प्रारंभ, ग्रिड-पंक्ति-अंत और ग्रिड-स्तंभ-अंत गुण सेट करें। उदाहरण आप CSS ग्रिड-एरिया प्रॉपर्टी को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं। <!DOCTYPE html> <html>    <head>     &

  1. CSS ग्रिड-ऑटो-कॉलम संपत्ति का उपयोग

    ग्रिड-ऑटो-कॉलम का उपयोग करें कॉलम के लिए डिफ़ॉल्ट आकार सेट करने के लिए संपत्ति। आप CSS के साथ ग्रिड-ऑटो-कॉलम प्रॉपर्टी को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं उदाहरण <!DOCTYPE html> <html>    <head>       <style>     &n

  1. CSS ग्रिड-ऑटो-फ्लो प्रॉपर्टी का उपयोग

    ग्रिड में स्वतः रखे गए आइटम शामिल करने के लिए ग्रिड-ऑटो-फ़्लो प्रॉपर्टी का उपयोग करें। उदाहरण आप सीएसएस के साथ ग्रिड-ऑटो-फ्लो प्रॉपर्टी को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं - <!DOCTYPE html> <html>    <head>       <style>