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

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 के साथ टेक्स्ट की अंतिम पंक्ति को संरेखित करें

    टेक्स्ट-एलाइन-लास्ट प्रॉपर्टी का इस्तेमाल टेक्स्ट की आखिरी लाइन को अलाइन करने के लिए किया जाता है। आप सीएसएस के साथ पाठ की अंतिम पंक्ति को संरेखित करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं उदाहरण <!DOCTYPE html> <html>    <head>       <style&g

  1. लाइन को तोड़ें और CSS के साथ अगली लाइन पर रैप करें

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

  1. CSS के साथ वर्टिकल लाइन कैसे बनाएं?

    CSS के साथ एक वर्टिकल लाइन बनाने के लिए, कोड इस प्रकार है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style>    .vLine {       border-left: 6px solid rgb(128, 0