Summary of Css methods for clearing floats

Summary of Css methods for clearing floats

Float is often used in web page layout, but the floating block-level elements are out of the standard document flow, which makes the parent element of the floating element have no height, resulting in the parent element having no height, so it is necessary to clear the impact of float on the parent element. This article introduces several methods to clear float.

Several ways to clear the floating effect: Set the height of the parent element

Effect picture:

Code:

<style>
    * {
        padding: 0;
        margin: 0;
    }
    .header {
        height: 30px;
        line-height: 30px;
        background-color: #333;
    }
    .header a {
        color: #fff;
        text-decoration: none;
    }
    ul {
        float: right;
    }
    li {
        float: left;
        list-style: none;
        padding-right: 20px;
    }
</style>

<div class="header">
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Article</a></li>
        <li><a href="#">Questions and Answers</a></li>
        <li><a href="#">Help</a></li>
        <li><a href="#">About</a></li>
    </ul>
</div>

External wall method: Use a blank block-level element to add the CSS style clear to clear the float

Note: Block-level elements with the clear style cannot have margin attributes added

Effect picture:

Code:

<style>
    * {
        padding: 0;
        margin: 0;
    }
    .header {
        /* background-color: #333; */
    }
    .header a {
        /* color: #fff; */
        text-decoration: none;
    }
    ul {
        float: right;
    }
    li {
        float: left;
        list-style: none;
        padding: 5px 20px;
    }

    .clearfix {
        height: 10px;
        background-color: red;
        clear: both;
    }

    .main {
        color: #fff;
        height: 100px;
        background-color: blue;
    }
</style>

<div class="header">
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Article</a></li>
        <li><a href="#">Questions and Answers</a></li>
        <li><a href="#">Help</a></li>
        <li><a href="#">About</a></li>
    </ul>
    
</div>

<div class="clearfix"></div>
    
<div class="main">Main content</div>

Inner wall method: Use a blank block-level element to add the CSS style clear to clear the float

Effect picture:

Code:

<style>
    * {
        padding: 0;
        margin: 0;
    }
    .header {
        background-color: #333;
    }
    .header a {
        color: #fff;
        text-decoration: none;
    }
    ul {
        float: right;
    }
    li {
        float: left;
        list-style: none;
        padding: 5px 20px;
    }
    .clearfix {
        clear: both;
    }
</style>

<div class="header">
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Article</a></li>
        <li><a href="#">Questions and Answers</a></li>
        <li><a href="#">Help</a></li>
        <li><a href="#">About</a></li>
    </ul>
    <div class="clearfix"></div>
</div>

The interior wall method has relative advantages over the exterior wall method:

After the inner wall method is set, the parent element of the floating element will be stretched, that is, the height

Add overflow:hidden to the parent element of the floating element

Original meaning: Remove hidden content, and hide all content that overflows the border.

Effect picture:

Code:

<style>
    * {
        padding: 0;
        margin: 0;
    }
    .header {
        background-color: #333;
        overflow: hidden;
    }
    .header a {
        color: #fff;
        text-decoration: none;
    }
    ul {
        float: right;
    }
    li {
        float: left;
        list-style: none;
        padding: 5px 20px;
    }

    .main {
        color: #fff;
        height: 100px;
        background-color: blue;
    }
</style>

<div class="header">
    <ul>
        <li><a href="#">Home</a></li>
        <li><a href="#">Article</a></li>
        <li><a href="#">Questions and Answers</a></li>
        <li><a href="#">Help</a></li>
        <li><a href="#">About</a></li>
    </ul>
</div>
    
<div class="main">Main content</div>

Summarize

The above is a summary of the Css methods for clearing floating introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Summary of React's way of creating components

>>:  How to view the IP address of Linux in VMware virtual machine

Recommend

How to start a Vue.js project

Table of contents 1. Node.js and Vue 2. Run the f...

A brief discussion on this.$store.state.xx.xx in Vue

Table of contents Vue this.$store.state.xx.xx Get...

A brief introduction to the general process of web front-end web development

I see many novice students doing front-end develop...

Two types of tab applications in web design

Nowadays, tabs are widely used in web design, but...

This article takes you to explore NULL in MySQL

Table of contents Preface NULL in MySQL 2 NULL oc...

How to configure tomcat server for eclipse and IDEA

tomcat server configuration When everyone is lear...

How to implement vertical text alignment with CSS (Summary)

The default arrangement of text in HTML is horizo...

mysql row column conversion sample code

1. Demand We have three tables. We need to classi...

Implement group by based on MySQL to get the latest data of each group

Preface: The group by function retrieves the firs...

Docker enables seamless calling of shell commands between container and host

As shown below: nsenter -t 1 -m -u -n -i sh -c &q...

14 techniques for high-performance websites

Original : http://developer.yahoo.com/performance...

The correct way to use Homebrew in Linux

Many people use Linux Homebrew. Here are three ti...

How to use CSS counters to beautify ordered lists of numbers

In web design, it is very important to use an org...

mysql 5.7.23 winx64 decompression version installation tutorial

Detailed installation tutorial of mysql-5.7.23-wi...