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

सीएसएस पृष्ठभूमि-क्लिप संपत्ति


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

उदाहरण

<html>
   <head>

      <style>
         #demo {
            border: 5px dashed red;
            padding: 10px;
            background: orange;
            background-clip: padding-box;
         }
      </style>

   </head>
   <body>

      <div id="demo">
         <h1>www.tutorialspoint.com</h1>
         <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. The journey commenced with a single tutorial on HTML in 2006 and elated by the response it generated,
               we worked our way to adding fresh tutorials to our repository which now proudly flaunts a wealth of tutorials and allied articles on
               topics ranging from programming languages to web designing to academics and much more..
         </p>
      </div>

   </body>
</html>

  1. सीएसएस फ़ॉन्ट-आकार-समायोजित संपत्ति

    फ़ॉन्ट-आकार-समायोजन का उपयोग करें फ़ॉन्ट फ़ॉलबैक होने पर पठनीयता को संरक्षित करने के लिए t गुण। आप फ़ॉन्ट-आकार-समायोजित संपत्ति को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं: उदाहरण <!DOCTYPE html> <html>    <head>       <style>   &nb

  1. सीएसएस व्हाइट-स्पेस प्रॉपर्टी

    किसी एलीमेंट के अंदर व्हाइट-स्पेस के साथ काम करने के लिए व्हाइट-स्पेस प्रॉपर्टी का इस्तेमाल करें: उदाहरण <!DOCTYPE html> <html>    <head>       <style>          p.demo1 {             white-space:

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

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