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

सीएसएस के साथ कॉलम के बीच नियम की शैली सेट करें

<घंटा/>

स्तंभों के बीच नियम की शैली सेट करने के लिए, स्तंभ-नियम-शैली . का उपयोग करें संपत्ति। कॉलम-नियम-शैली . को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं संपत्ति।

उदाहरण

<!DOCTYPE html>
<html>
   <head>
      <style>
         .demo {
            column-count: 4;
            column-gap: 50px;
            column-rule-color: maroon;
            column-rule-style: dashed;
         }
      </style>
   </head>
   <body>
      <div class = "demo">
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
         This is demo text. This is demo text. This is demo text. This is demo text.
      </div>
   </body>
</html>

  1. CSS के साथ टेक्स्ट की अंतिम पंक्ति को संरेखित करें

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

  1. CSS में टेक्स्ट डेकोरेशन का रंग सेट करें

    टेक्स्ट डेकोरेशन का रंग सेट करने के लिए, टेक्स्ट-डेकोरेशन-कलर प्रॉपर्टी का उपयोग करें - उदाहरण <!DOCTYPE html> <html> <head> <style> .demo {    text-decoration: overline;    text-decoration-color: yellow; } </style> </head> <body> <h1&

  1. CSS में टेक्स्ट डेकोरेशन की शैली सेट करें

    टेक्स्ट डेकोरेशन की शैली सेट करने के लिए, टेक्स्ट-डेकोरेशन-स्टाइल प्रॉपर्टी का उपयोग करें। आप निम्न मानों का उपयोग कर सकते हैं - text-decoration-style: solid|double|dotted|dashed|wavy|initial|inherit; उदाहरण <!DOCTYPE html> <html> <head> <style> span {    text-decor