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

CSS के साथ पृष्ठभूमि छवि निर्दिष्ट करें


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

उदाहरण

<html>
   <head>

      <style>
         #demo {
            border: 5px dashed red;
            padding: 10px;
            background-image: url("https://www.tutorialspoint.com/css/images/css-mini-logo.jpg");
         }
      </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 के साथ पृष्ठभूमि छवि के रूप में एक रेडियल ग्रेडिएंट सेट करें

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

  1. CSS का उपयोग करके पृष्ठभूमि छवि सेट करना

    CSS बैकग्राउंड-इमेज प्रॉपर्टी का इस्तेमाल इमेज को चुने गए एलीमेंट के लिए बैकग्राउंड के तौर पर सेट करने के लिए किया जाता है। सिंटैक्स CSS बैकग्राउंड-इमेज प्रॉपर्टी का सिंटैक्स इस प्रकार है - चयनकर्ता {पृष्ठभूमि-छवि:/*मान*/} निम्नलिखित उदाहरण CSS बैकग्राउंड-इमेज प्रॉपर्टी को दर्शाते हैं - उदाहरण #de

  1. कैसे सीएसएस के साथ एक धुंधली पृष्ठभूमि छवि बनाने के लिए?

    CSS के साथ एक धुंधली पृष्ठभूमि छवि बनाने के लिए निम्नलिखित कोड है - उदाहरण <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body, html {    height: 100vh;    margin: 0; &