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

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


सीएसएस पृष्ठभूमि-मूल गुण का उपयोग पृष्ठभूमि छवियों की स्थिति निर्दिष्ट करने के लिए किया जाता है।

उदाहरण

पृष्ठभूमि-मूल संपत्ति को लागू करने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं:

<html>
   <head>
      <style>
         #demo {
            border: 5px dashed red;
            padding: 10px;
            background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");
            background-origin: content-box;
         }
      </style>
   </head>
   <body>
      <div id="demo">
         <h1>www.tutorialspoint.com</h1>
         <p>The website www.tutorialspoint.com is owned and maintained by Tutorials Point India
            Private Limited, henceforth termed as “we”, “our”, “us”, or the “company”.
            All the visitors, users, learners, contributors, teachers, and instructors
            are named as "users"; and the website tutorialspoint.com is termed as
            "website" everywhere in this document.
            We are committed to protecting your privacy online. This privacy policy explains
            what information we collect from you or what information you share with
            us when you visit the website. We review our policy from time to time,
            so you are advised to check the latest version.
         </p>
      </div>
   </body>
</html>

  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

  1. CSS सूचक-घटनाएँ संपत्ति

    पॉइंटर-इवेंट प्रॉपर्टी निर्दिष्ट करती है कि क्या तत्व को कुछ कार्रवाई करनी चाहिए या नहीं जब उस पर पॉइंटर इवेंट ट्रिगर होता है। पॉइंटर ईवेंट को माउस क्लिक, टच, स्टाइलस, आदि द्वारा ट्रिगर किया जा सकता है। CSS में पॉइंटर-इवेंट प्रॉपर्टी दिखाने वाला कोड निम्नलिखित है - उदाहरण <!DOCTYPE html> <