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

CSS एनिमेशन के साथ कॉलम-चौड़ाई वाली संपत्ति बदलें

<घंटा/>

CSS के साथ कॉलम-चौड़ाई वाली संपत्ति पर एनीमेशन लागू करने के लिए, आप निम्न कोड को चलाने का प्रयास कर सकते हैं

उदाहरण

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 600px;
            height: 300px;
            background: white;
            border: 10px solid red;
            animation: myanim 3s infinite;
            bottom: 30px;
            position: absolute;
            column-rule: 10px inset orange;
            column-count: 4;
            column-width: 200px;
         }
         @keyframes myanim {
            20% {
               bottom: 100px;
               box-shadow: 30px 45px 70px orange;
               column-rule-color: black;
               column-width: 150px;
            }
         }
      </style>
   </head>
   <body>
      <h2>Performing Animation on column width property</h2>
      <div>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 में टेक्स्ट-जस्टिफाई प्रॉपर्टी

    CSS में टेक्स्ट-जस्टिफाई प्रॉपर्टी का इस्तेमाल टेक्स्ट के जस्टिफिकेशन मेथड को सेट करने के लिए किया जाता है, जब टेक्स्ट-एलाइन प्रॉपर्टी को जस्टिफाई वैल्यू पर सेट किया जाता है। संपत्ति के मूल्य निम्नलिखित हैं - text-justify: auto|inter-word|inter-character|none|initial|inherit; उदाहरण आइए अब CSS में

  1. सीएसएस सही संपत्ति

    तत्व की क्षैतिज स्थिति निर्धारित करने के लिए सही गुण का उपयोग किया जाता है। इसे - . के रूप में सेट किया गया है right: auto|length|initial|inherit; उदाहरण आइए CSS में सही प्रॉपर्टी को लागू करने के लिए एक उदाहरण देखें - <!DOCTYPE html> <html> <head> <style> div {    

  1. टेक्स्ट इंडेंटेशन सीएसएस के साथ काम करना

    CSS टेक्स्ट-इंडेंट प्रॉपर्टी हमें किसी एलीमेंट की पहली लाइन का इंडेंटेशन सेट करने में मदद करती है। सिंटैक्स CSS टेक्स्ट-इंडेंट प्रॉपर्टी का सिंटैक्स इस प्रकार है - Selector {    text-indent: /*value*/ } उदाहरण निम्नलिखित उदाहरण CSS टेक्स्ट-इंडेंट प्रॉपर्टी को दर्शाते हैं। <!DOCTYPE ht