HTML 플로트 왼쪽
Alignment of the elements for building the HTML webpage is one of the most important tasks. This can be done by using one of the CSS property called float with its position value. Float property can be used with values as Right, Left, none, inline-start, inline-end. Float Left tag in HTML is responsible to show all text or elements into the left side of the included container or in the left position body part of HTML. Whenever this float left element is used its changes the normal flow of contents and moves, it’s towards the left side of the container.
Syntax
- The syntax for defining position float left in HTML is as follows:
float:position_value;
- As shown in the above syntax, floated elements are going to show with their position value. It could be left, right or none. Ex: float: left;
- Some situation comes where we want to change the position of elements below floated elements. So we want to clear elements before putting any other elements by clearing floats.
- Floating elements help us move contents into the same parent who will be going to move on and wrap all those elements around the floating elements.
- One of the alternative options for Float based layouts is Flexbox, which is used for designing modern websites layout.
- While designing any webpage, we are going to use header, navigation menu, sidebar, navbar, main content of the page, and footer. All those are treated as a container element that is stored as HTML content.
- One can use more than one left floated element in their webpage. So it will be useful for designing the multi-column layout.
- The best website design is considered the use of 3 nested div blocks, which helps design the layout of the page, including a container block, along with a full-width page for storing all elements and one more block called sidebar content blocks. Those two blocks are aligned with HTML property float left.
- Float left property can be useful in both inline as well as block-level elements. It’s also useful for displaying an image on the left side of the div.
- Float elements can be applied only on elements that are placed horizontally in the code structure.
Examples of HTML Float Left
Given below are the examples of HTML Float Left:
Example #1
This is an example showing paragraphs content Left aligned.
Code:
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Float Left</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> .img { float: left; width: 60px; height: 60px; margin: 25px; border-radius: 40px; background-color: lime; } .hd { margin-top: 30px; } .pg { margin: 10px; overflow: hidden; /* This is important */ } </style> </head> <body> <div class='column'> <div class='img'> </div> <h3 class='hd'>Photography</h3> <p class='pg'>Photography is latest crazy trend going on now a days. People are going to be more passionate about capturing live moments. A perfect Cameraman and perfect camera captures mind-blowing picture. Being professional photographer is one of the best careers now a days which combine passion and money. Photography can be any type of Wedding shoot, Pre wedding shoot, Baby Shower, Birthday, Professional photography and many more. It can suitable to any age group. It does can be art and science. This is the skill to enhance personal hobby in career. A photographer must be able to create a good composition of any subject, a piece of machinery, the beauty of human body, scenery or a child's smile. </p> </div> <div class='column'> <div class='img'></div> <h3 class='hd'>Architecture</h3> <p class='pg'>Architecture is all about thoughts and creating something new in given space. architects has power to change the world. Architecture has all skill to develop personal skills. It is also known as latest trendy career option in the market now a days. It helps to build beautiful structure of houses, buildings, and other entities. A good architecture have creative mind. Those people club their skills to create amazing buildings </p> </div> </body> </html>
Output:
Example #2
This is a small layout of the webpage in which contents are aligned on the left-hand side of the container.
Code:
<!DOCTYPE html> <html lang="en"> <head> <title>HTML Float Left</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> * { box-sizing: border-box; } body { margin: 0; } .header { padding: 8px; text-align: center; background: lightblue; color:black; } .navbar { overflow: hidden; background-color: lightcyan; } .navbar a { float: left; display: block; color: black; text-align: center; padding: 12px 12px; } .navbar a.left { float: left; } .navbar a:hover{ background-color: #eee; color: black; } .row { display: flex; flex-wrap: wrap; } .sidebar { background-color: #f1f1f1; padding: 10px; } .main { background-color: white; padding: 20px; } .logoimg { float:left; } </style> </head> <body> <div class="header"> <div class="logoimg" ><img src="C:\Users\Sonali\Desktop\t2.jpg" style="width:70%;"></div> <h1>Welcome to Crazy Travelers</h1> </div> <div class="navbar"> <a href="#">Historical Places</a> <a href="#">Beaches</a> <a href="#">Adventoures Tour</a> <a href="#">Study Tour</a> </div> <div class="row"> <div class="sidebar"> <h2>Goa Calling</h2> <div><img src="C:\Users\Sonali\Desktop\t1.jpg" style="height:100px;"></div> <h4>Explore Beaches, Enjoy Sea-food</h4> <h2>Adventurous Trekking</h2> <div ><img src="C:\Users\Sonali\Desktop\t4.jpg" style="height:100px;"></div> <h4>Paragliding, Rock climbing and many more</h4> </div> <div class="main"> <img src="C:\Users\Sonali\Desktop\travel 1.jpg" style="width:80%;"> <p> Travaling is main part of our life.Every travaling has some eductional value.It gives peaace of mind to everyone.</p> </div> </div> </body> </html>
Output:
Example #3
Code:
<!DOCTYPE html> <html> <head> <title>CSS float left for multiple elements</title> <style> .imgs { float: left; width: 140px; height: 100px; margin: 10px; } </style> </head> <body> <h3>HTML Float Left</h3> <p>Image demo with Float left. Minimize and Maximize browser will show differences. </p> <img class="imgs" src="C:\Users\Sonali\Desktop\1.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\2.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\3.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\4.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\5.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\6.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\7.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\8.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\9.jpg"/> <img class="imgs" src="C:\Users\Sonali\Desktop\10.jpg"/> </body> </html>
Output:
- 1st screen output with left alignment with Float Left attribute, This output with minimizing screen are as follows:
- 2nd Output with normal screen
- 3rd output with maximizing screen
Conclusion
HTML float can be used with values left, right, inline-start, inline-end, etc. HTML float left is used to align content at the left alignment of the webpage or HTML document. Whenever Float left is used within code, it is responsible for putting contents on the left side of the container. It is most of the time used within the sidebar and other contents into the webpage layout.
위 내용은 HTML 플로트 왼쪽의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

HTML의 테이블 테두리 안내. 여기에서는 HTML의 테이블 테두리 예제를 사용하여 테이블 테두리를 정의하는 여러 가지 방법을 논의합니다.

HTML의 Nested Table에 대한 안내입니다. 여기에서는 각 예와 함께 테이블 내에 테이블을 만드는 방법을 설명합니다.

HTML 여백-왼쪽 안내. 여기에서는 HTML margin-left에 대한 간략한 개요와 코드 구현과 함께 예제를 논의합니다.

HTML 테이블 레이아웃 안내. 여기에서는 HTML 테이블 레이아웃의 값에 대해 예제 및 출력 n 세부 사항과 함께 논의합니다.

HTML 입력 자리 표시자 안내. 여기서는 코드 및 출력과 함께 HTML 입력 자리 표시자의 예를 논의합니다.

HTML 순서 목록에 대한 안내입니다. 여기서는 HTML Ordered 목록 및 유형에 대한 소개와 각각의 예에 대해서도 설명합니다.

HTML onclick 버튼에 대한 안내입니다. 여기에서는 각각의 소개, 작업, 예제 및 다양한 이벤트의 onclick 이벤트에 대해 설명합니다.

HTML에서 텍스트 이동 안내. 여기서는 Marquee 태그가 구문과 함께 작동하는 방식과 구현할 예제에 대해 소개합니다.
