search
HomeWeb Front-endHTML TutorialLearning experience of css float_html/css_WEB-ITnose

Detailed explanation of css float

@(css float)[hasLayout|clear float|Miaotong]

The definition and usage of css float

float attribute defines in which direction the element floats. Historically this property has always been applied to images, causing the text to wrap around the image, but in CSS, any element can be floated. A floated element creates a block-level box, regardless of what type of element it is.

If floating non-replaced elements, specify an explicit width; otherwise, they are made as narrow as possible.

Note: If there is very little space for a floating element on a row, then the element will jump to the next row, and this process will continue until a certain row has enough space.

默认值:none;继承性:no;版本:CSS1JavaScript 语法:object.style.cssFloat="left";

Possible values

值						描述left					元素向左浮动。right					元素向右浮动。none					默认值。元素不浮动,并显示在其在文本中出现的位置。inherit					规定应该从父元素继承 float 属性的值。

Simple example

float:left is used here ;We float the ul element and a element to the left.

clear float

  • What is clear float? Many people are used to translating clear float as "clear float". I think that in view of the problems caused by float, what we need to do is to understand the impact of float, not just clear float, but also Include closed floats so that floats do not affect other elements.

  • Why do we need to clear float?The reason why we need to clear float is not that we are unhappy with float, but that in some cases, float causes Problems with our layout forced us to clear the impact of float. Listed below are some layout problems caused by float and the clear float method:
    The code and renderings are as follows:



  • The above examples show that if the inner div floats , then when the height, padding, and margin are not set for the parent div, the height of the parent is 0, and we know that the height of the parent container can be expanded by the height of the inner content. This is the height collapse caused by float. question.

    What if we set the height of the parent container?

    The code and renderings are as follows:



    We found that when setting the height of the parent container, the height is not 0, but 200px set for us;

    What if we set margin and padding to the parent container?

    The code and renderings are as follows:



    The above example shows that if we do not set the height of the parent div and only set padding and margin, as shown in the renderings, the actual The height of the top is equal to the top and bottom borders, plus the top and bottom padding, plus margin. However, the height of the content is still 0, and the height collapses due to float.

    In this case, the clear float method is as follows:


    Method 1: Add a new element tag and apply clear: both; The code and renderings are as follows:



    The above example shows that when clear: both is used; the height of the parent div is expanded by the height of the child layer, and the height of the content becomes 50px; and padding, Margins are not affected. The advantages and disadvantages of this method are as follows:

  • Advantages : Easy to learn, easy to use, and easy to master.
  • Disadvantages: It does not comply with the separation of structure and performance, adds a lot of useless tags, and is inconvenient for later maintenance, so it is not recommended to use.
  • Method 2: Parent div defines overflow:auto/hidden; (the parent div here refers to div#wrap)The code and renderings are as follows:



    The above example shows that the effect can also be achieved through method two. The height of the content has also changed to 50px, and padding and margin are not affected.

  • Principle: Block Formatting Context (block-level formatting context) is a concept in the W3C CSS 2.1 specification, which determines how an element positions its content and interacts with it. Relationships and interactions with other elements.
  • In the element where Block Formatting Context is created, its child elements will be placed one after another. Their vertical starting point is the top of a containing block, and the vertical distance between two adjacent elements depends on the 'margin' attribute. The vertical margins of adjacent block-level elements in a Block Formatting Context collapse.

  • The use of BFC:

    Non-BFC elements will ignore the height value of their child elements that add float; their top and bottom margins will be the same as those of the child elements. The margins are collapsed; its inner and outer float elements will affect the layout of itself and its sub-elements.

    Triggering BFC is an effective way to solve these three problems. This is why overflow:hidden/auto can be used to clear problems such as floating.

  • Conditions for triggering BFC :

  • The value of "float" is not "none"

    The value of "overflow" is not The value of "visible"
    "display" is "table-cell"
    "table-caption", or the value of "inline-block"
    "position" is neither "static" nor "relative"

    Therefore, when using the overflow attribute to clear floats, please note that the overflow attribute has three attribute values: hidden, auto, visible, scroll, and inherit. We can use hidden and auto values ​​to clear floats, but we cannot use visible values. This value will not achieve the effect of clearing floats. Both atuo and hidden values ​​are ok, and hasLayout needs to be triggered in IE6, such as zoom: 1;
    The advantages and disadvantages of using the overflow:auto; method are as follows:

  • Advantages: It conforms to the separation of structure and performance, and the amount of code is very small.
  • Disadvantages: After multiple nestings, firefox may cause all content to be selected in some cases, so it is not recommended.
    The advantages and disadvantages of using the overflow:hidden; method are as follows:
  • Advantages: It conforms to the separation of structure and performance, and the amount of code is very small.
  • Disadvantages: When the content increases, it is easy to cause the content to not wrap automatically, causing the content to be hidden, and elements that need to overflow cannot be displayed, which affects the layout and is not recommended.
  • Method 3: The parent element is also set to float
    The code and effect are as follows:

  • Advantages: Comply with the structure Separated from performance, the amount of code is very small.
  • Disadvantage: The layout of elements adjacent to the parent element will be affected. Keep looking for the parent container to float, looking up layer by layer. It is not recommended. And it conflicts with margin:0 auto; horizontal centering.
    Method 4: Use the br tag (clear="all" in br)
    This method is somewhat niche, br has the clear="all | left | right | none" attribute;
    The code and effect are as follows:


  • Advantages: It has slightly stronger semantics than the empty tag method and less code
  • Disadvantages: But it is also not semantic and violates the separation of structure and performance. It is recommended not to use.
    Method 5: Set display:table on the parent element; or set display:inline-block;
    The code and effect are as follows:






  • Advantages: The structural semantics are completely correct, and the amount of code is very small
  • Disadvantages: display: table ;The box model properties have been changed, causing a series of problems. Not recommended. display:inline-block;cannot set margin:0 auto;
  • Method 5: Use:after pseudo-element
    It should be noted that:after is a pseudo-element (Pseudo-Element) , not a pseudo class (called a "pseudo object" in some CSS manuals).
    Since IE6-7 does not support :after, use zoom:1 to trigger hasLayout.
    This method is derived from: How To Clear Floats Without Structural Markup http://snipplr.com/view/86/clear-floats-without-structural-markup/
    The code and results are as follows:


  • Advantages: The structure and semantics are completely correct, and the code size is centered.
  • Disadvantages: Improper reuse will increase the amount of code. The
    style can also be written like this:
    .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
    .clearfix {display: inline-block;} /* for IE/Mac /


    Due to the low market share of IE/Mac, it can be simplified to:
    .clearfix:after {content:"."; display:block; height:0; visibility:hidden; clear:both; }
    .clearfix { zoom:1; }
    The code and renderings are as follows :



    where clear:both; refers to clearing all floats; content: '.'; display:block; is indispensable for FF/chrome/opera/IE8, and content() can be taken The value can also be empty. The function of visibility:hidden; is to allow the browser to render it but not display it, so that the float can be cleared.
    When writing HTML code, I found that in Firefox and other browsers that comply with W3C standards, if there is a DIV as an external container, and the internal DIV has a float style set, the external container DIV will not clear internally, resulting in Can't be stretched open.
    This clearfix CSS uses the after pseudo-object, which will add the content in content at the end of the element to which clearfix is ​​applied. A period "." is added here, and its display is set to block; the height is set to 0; clear is set to both; and visibility is set to hidden. This achieves the purpose of opening the container. Explain here:
    CSS content attribute
  • Definition and usage
    content attribute and :before and :after pseudo-elements Used together to insert generated content.
    Description
    This attribute is used to define generated content placed before or after the element. By default, this is often inline content, but the type of box this content creates can be controlled using the display attribute.

    Default: normal
    Inheritance: no
    Version: CSS2
    JavaScript Syntax: object.style.content="url(beep.wav)"

    Value
    none
    normal
    content specifications
    inherit specifies that the value of the content attribute should be inherited from the parent element.

  • For details, please refer to the link: http://www.w3school.com.cn/cssref/pr_gen_content.asp

    Conclusion

    This article involves hasLayout, BFC, etc. Due to the limited level, I will not talk about them one by one here. I will discuss them in another article after research.
    That’s it for today. If there are any mistakes, please point them out. Thank you! -----Miaotong

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Difficulty in updating caching of official account web pages: How to avoid the old cache affecting the user experience after version update?Mar 04, 2025 pm 12:32 PM

    The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

    How to efficiently add stroke effects to PNG images on web pages?How to efficiently add stroke effects to PNG images on web pages?Mar 04, 2025 pm 02:39 PM

    This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

    How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

    The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

    What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

    What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

    What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

    Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

    What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

    The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    DVWA

    DVWA

    Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),