तत्व को क्षैतिज रूप से संरेखित करने के लिए, cssFloat का उपयोग करें संपत्ति।
उदाहरण
जावास्क्रिप्ट के साथ किसी तत्व के क्षैतिज संरेखण को सेट करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <img id="myID" src="https://www.tutorialspoint.com/videotutorials/images/tutor_connect_home.jpg" width="300" height="300"> <p>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> <button type="button" onclick="display()">Align Horizontally</button> <script> function display() { document.getElementById("myID").style.cssFloat = "right"; } </script> </body> </html>