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

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


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

उदाहरण

आप CSS में background-size प्रॉपर्टी को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं:

<html>
   <head>

      <style>
         #demo {
            border: 5px dashed green;
            padding: 10px;
            background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");
            background-size: 200px 100px;
         }
      </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. सीएसएस फ़ॉन्ट-आकार-समायोजित संपत्ति

    फ़ॉन्ट-आकार-समायोजन का उपयोग करें फ़ॉन्ट फ़ॉलबैक होने पर पठनीयता को संरक्षित करने के लिए 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