How To Use Floating Image In HTML Page? - Tutorialspoint
Có thể bạn quan tâm
- Home
- Whiteboard
- Online Compilers
- Practice
- Articles
- AI Assistant
- Jobs
- Tools
- Corporate Training
- Courses
- Certifications
- Switch theme
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
To use a floating image in HTML, use the CSS property float. It allows you to float an image left or right. More property values include the following:
| Sr.No. | Property Value & Description |
|---|---|
| 1 | noneNot floated |
| 2 | leftFloats to the left |
| 3 | rightFloats to the right |
| 4 | initialDefault value |

Example
You can try to run the following code to use floating image in HTML. Here’s the usage of float right and float left CSS attribute
<!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>Output

Alankritha Ammu Updated on: 2021-12-22T10:35:43+05:30 22K+ Views
Kickstart Your Career
Get certified by completing the course
Get StartedTừ khóa » Html Float Left
-
CSS Float Property - W3Schools
-
CSS Layout - Float And Clear - W3Schools
-
Float - CSS: Cascading Style Sheets - MDN Web Docs
-
HTML Float Left - EduCBA
-
The CSS Float Property: How To Use & Clear It - HubSpot Blog
-
All About Floats | CSS-Tricks
-
CSS Float
-
CSS Float And Clear | How To Float In Css, Clear Both
-
Float - Bootstrap
-
Float Left Element And Float Right Element Get Pushed Up By A ...
-
How To Float Three Div Side By Side Using CSS? - GeeksforGeeks
-
Clear Float: An Easy Guide On Using The CSS Clear Property
-
HTML & CSS For Beginners Part 18: How Floats And Clears Work
-
Clearing Floats - CSS - QuirksMode