हम सीएसएस फ्लोट प्रॉपर्टी वाले तत्वों को या तो बाएँ या दाएँ पैरेंट एलिमेंट के साथ फ़्लोट कर सकते हैं। अन्य तत्वों को फ़्लोट की गई सामग्री के आसपास रखा गया है।
फ़्लोट प्रॉपर्टी के समान मान वाले एकाधिक तत्वों को एक साथ रखा गया है।
उदाहरण
आइए CSS फ्लोट प्रॉपर्टी के लिए एक उदाहरण देखें -
<!DOCTYPE html> <html> <head> <title>CSS Float</title> <style> form { width:70%; margin: 0 auto; text-align: center; } input[type="button"] { border-radius: 10px; } #container { display: flex; flex-direction: column-reverse; justify-content: center; align-items: center; } .child{ height: 40px; width: 40px; color: white; border: 4px solid black; } .orange{ background-color: #FF8A00; } .red{ background-color: #F44336; } .violet{ background-color: #C303C3; } .green{ background-color: #4CAF50; } .blue{ background-color: #03A9F4; } .yellow{ background-color: #FEDC11; } #left{ display: flex; float: left; } #right{ display: flex; float: right; } </style> </head> <body> <form> <fieldset> <legend>CSS-Float</legend> <div id="container"> <div class="child orange"></div><div class="child red"></div><div class="child violet"></div><div class="child green"></div><div class="child blue"></div><div class="child yellow"></div> </div><br> <input type="button" value="float-->left" onclick="floatDecider('left')"> <input type="button" value="float-->right" onclick="floatDecider('right')"> <div><div id="left"></div><div id="right"></div></div> </fieldset> </form> <script> var left = document.getElementById('left'); var right = document.getElementById('right'); function floatDecider(direction){ var allChildren = document.getElementsByClassName('child'); if(direction === 'left') left.insertAdjacentElement('beforeend',allChildren[0]); else right.insertAdjacentElement('afterbegin',allChildren[0]); } </script> </body> </html>
आउटपुट
किसी भी बटन को क्लिक करने से पहले -
'फ्लोट-->बाएं' क्लिक कर रहा है बटन 4 बार -
'फ्लोट-->राइट' . पर क्लिक करना बटन -