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

सीएसएस के साथ सभी पृष्ठभूमि छवि गुणों को एक अनुभाग में सेट करें


CSS बैकग्राउंड प्रॉपर्टी का इस्तेमाल बैकग्राउंड इमेज के सभी गुणों को एक सेक्शन में सेट करने के लिए किया जाता है।

उदाहरण

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

<html>
   <head>
      <style>
         #demo {
            background: lightblue url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg") no-repeat fixed top;
         }
      </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. सीएसएस के साथ पृष्ठभूमि छवि के रूप में एक रैखिक ढाल सेट करें

    रैखिक ढाल () सीएसएस फ़ंक्शन के साथ पृष्ठभूमि छवि के रूप में एक रैखिक ढाल सेट करें। आप CSS में रेखीय-ग्रेडिएंट () फ़ंक्शन को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं उदाहरण <!DOCTYPE html> <html>    <head>       <style>     &

  1. CSS के साथ सभी बॉर्डर-त्रिज्या गुण सेट करें

    सीमा-त्रिज्या का उपयोग करें सभी चार सीमा-त्रिज्या गुणों को सेट करने के लिए संपत्ति। आप सीमा-त्रिज्या गुण को लागू करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं: उदाहरण <html>    <head>       <style>          #rcorner {   &nb

  1. CSS के साथ पृष्ठभूमि छवि के रूप में एक रेडियल ग्रेडिएंट सेट करें

    रेडियल-ग्रेडिएंट () CSS फ़ंक्शन के साथ, पृष्ठभूमि छवि के रूप में एक रेडियल ग्रेडिएंट सेट करें। आप CSS में रेखीय-ग्रेडिएंट () फ़ंक्शन को लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं उदाहरण <!DOCTYPE html> <html>    <head>       <style> &nb