Table of Contents
前面的话
思路一: float 
思路二: inline-block
思路三: table
思路四: flex
Home Web Front-end HTML Tutorial 实现CSS等分布局的4种方式_html/css_WEB-ITnose

实现CSS等分布局的4种方式_html/css_WEB-ITnose

Jun 24, 2016 am 11:19 AM

× 目录 [1]float [2]inline-block [3]table [4]flex

前面的话

  等分布局是指子元素平均分配父元素宽度的布局方式,本文将介绍实现等分布局的4种方式

 

思路一: float 

  缺点:结构和样式存在耦合性,IE7-浏览器下对宽度百分比取值存在四舍五入的误差

【1】float + padding + background-clip

  使用padding来实现子元素之间的间距,使用background-clip使子元素padding部分不显示背景

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    margin-right: -20px;    overflow: hidden;}.child{    float: left;    height: 100px;    width: 25%;    padding-right: 20px;    box-sizing: border-box;    background-clip: content-box;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: lightblue;">1</div>        <div class="child" style="background-color: lightgreen;">2</div>        <div class="child" style="background-color: lightsalmon;">3</div>        <div class="child" style="background-color: pink;">4</div>                    </div>    </div>
Copy after login
Copy after login
Copy after login
Copy after login

【2】float + margin + calc

  使用margin实现子元素之间的间距,使用calc()函数计算子元素的宽度

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    overflow: hidden;    margin-right: -20px;}.child{    float: left;    height: 100px;    width: calc(25% - 20px);    margin-right: 20px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: lightblue;">1</div>        <div class="child" style="background-color: lightgreen;">2</div>        <div class="child" style="background-color: lightsalmon;">3</div>        <div class="child" style="background-color: pink;">4</div>                    </div>    </div>
Copy after login
Copy after login
Copy after login
Copy after login

【3】float + margin + (fix)

  使用margin实现子元素之间的间距,通过增加结构来实现兼容

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    overflow: hidden;    margin-right: -20px;}.child{    float: left;    width: 25%;}.in{    margin-right: 20px;    height: 100px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: blue;">            <div class="in" style="background-color: lightblue;">1</div>        </div>        <div class="child" style="background-color: green;">            <div class="in" style="background-color: lightgreen;">2</div>        </div>        <div class="child" style="background-color: orange;">            <div class="in" style="background-color: lightsalmon;">3</div>        </div>        <div class="child" style="background-color: red;">            <div class="in" style="background-color: pink;">4</div>        </div>                    </div>    </div>
Copy after login
Copy after login
Copy after login

思路二: inline-block

  缺点:需要设置垂直对齐方式vertical-align,则需要处理换行符解析成空格的间隙问题。IE7-浏览器不支持给块级元素设置inline-block属性,兼容代码是display:inline;zoom:1;

【1】inline-block + padding + background-clip

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    font-size: 0;    margin-right: -20px;    overflow: hidden;}.child{    display:inline-block;    vertical-align: top;    width: 25%;    padding-right: 20px;    box-sizing: border-box;    background-clip: content-box;    font-size: 16px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: lightblue;">1</div>        <div class="child" style="background-color: lightgreen;">2</div>        <div class="child" style="background-color: lightsalmon;">3</div>        <div class="child" style="background-color: pink;">4</div>                    </div>    </div>
Copy after login
Copy after login
Copy after login
Copy after login

【2】inline-block + margin + calc

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    margin-right: -20px;    font-size: 0;}.child{    display: inline-block;    vertical-align: top;    font-size: 16px;    height: 100px;    width: calc(25% - 20px);    margin-right: 20px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: lightblue;">1</div>        <div class="child" style="background-color: lightgreen;">2</div>        <div class="child" style="background-color: lightsalmon;">3</div>        <div class="child" style="background-color: pink;">4</div>                    </div>    </div>
Copy after login
Copy after login
Copy after login
Copy after login

【3】inline-block + margin + (fix)

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    margin-right: -20px;    font-size: 0;}.child{    display: inline-block;    vertical-align: top;    font-size: 16px;    width: 25%;}.in{    margin-right: 20px;    height: 100px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: blue;">            <div class="in" style="background-color: lightblue;">1</div>        </div>        <div class="child" style="background-color: green;">            <div class="in" style="background-color: lightgreen;">2</div>        </div>        <div class="child" style="background-color: orange;">            <div class="in" style="background-color: lightsalmon;">3</div>        </div>        <div class="child" style="background-color: red;">            <div class="in" style="background-color: pink;">4</div>        </div>                    </div>    </div>
Copy after login
Copy after login
Copy after login

思路三: table

  缺点:元素被设置为table后,内容撑开宽度。若要兼容IE7-浏览器,需要改为

结构。table-cell元素无法设置margin,设置padding及background-clip也不可行

【1】table + margin负值

<style>body,p{margin: 0;}.parentWrap{    overflow: hidden;}.parent{    display: table;    width: calc(100% + 20px);    table-layout: fixed;}.child{    display: table-cell;    padding-right: 20px;}.in{    height: 100px;}</style>
Copy after login

<div class="parentWrap">    <div class="parent" style="background-color: lightgrey;">        <div class="child" style="background-color: blue;">            <div class="in" style="background-color: lightblue;">1</div>        </div>        <div class="child" style="background-color: green;">            <div class="in" style="background-color: lightgreen;">2</div>        </div>        <div class="child" style="background-color: orange;">            <div class="in" style="background-color: lightsalmon;">3</div>        </div>        <div class="child" style="background-color: red;">            <div class="in" style="background-color: pink;">4</div>        </div>                    </div>    </div>
Copy after login
Copy after login
Copy after login

【2】table + 兄弟选择器

<style>body,p{margin: 0;}.parent{    display: table;    width: 100%;    table-layout: fixed;}.child{    display: table-cell;}.child + .child{    padding-left: 20px;}.in{    height: 100px;}</style>
Copy after login

<div class="parent" style="background-color: lightgrey;">    <div class="child" style="background-color: blue;">        <div class="in" style="background-color: lightblue;">1</div>    </div>    <div class="child" style="background-color: green;">        <div class="in" style="background-color: lightgreen;">2</div>    </div>    <div class="child" style="background-color: orange;">        <div class="in" style="background-color: lightsalmon;">3</div>    </div>    <div class="child" style="background-color: red;">        <div class="in" style="background-color: pink;">4</div>    </div>                </div>    
Copy after login

思路四: flex

<style>body,p{margin: 0;}.parent{    display: flex;}.child{    flex:1;    height: 100px;}.child + .child{    margin-left: 20px;}</style>
Copy after login

<div class="parent" style="background-color: lightgrey;">    <div class="child" style="background-color: lightblue;">1</div>    <div class="child" style="background-color: lightgreen;">2</div>    <div class="child" style="background-color: lightsalmon;">3</div>    <div class="child" style="background-color: pink;">4</div>                </div>    
Copy after login

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

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 &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

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 <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 &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

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 &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; 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 &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; 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 viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles