HTML में फ्लोटिंग इमेज का उपयोग करने के लिए, CSS प्रॉपर्टी फ्लोट का उपयोग करें। यह आपको एक छवि को बाएँ या दाएँ तैरने की अनुमति देता है। अधिक संपत्ति मूल्यों में निम्नलिखित शामिल हैं:
Sr.No. वें> | संपत्ति मूल्य और विवरण वें> |
---|---|
1 | कोई नहीं तैरता नहीं |
2 | बाएं बाईं ओर तैरता है |
3 | दाएं दाईं ओर तैरता है |
4 | आरंभिक डिफ़ॉल्ट मान |
उदाहरण
आप HTML में फ्लोटिंग इमेज का उपयोग करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं। यहां फ्लोट राइट और फ्लोट लेफ्ट CSS एट्रिब्यूट का उपयोग किया गया है
<!DOCTYPE html> <html> <head> <title>HTML Floating Image</title> </head> <body> <h1>Float Right</h1> <p>The below image floats to the right.</p> <p> <img src="https://www.tutorialspoint.com/green/images/logo.png" style="float:right" width="190" height="84" /> This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </p> <h1>Float Left</h1> <p>The below image floats to the left.</p> <p> <img src="https://www.tutorialspoint.com/green/images/logo.png" style="float:left" width="190" height="84" /> This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. This is demo text. </p> </body> </html>
आउटपुट