search
HomeWeb Front-endHTML Tutorialcss multi-column adaptive layout_html/css_WEB-ITnose

In page reconstruction, we often need to implement multi-column layout, such as a combination of n columns with fixed width and m columns with adaptive width, absolute layout padding and percentage width are easy to think of more violent solutions. method, but as future "engineers", we should need some more elegant methods. Let’s talk about the two-column layout first. The example above:

<div class='container' >    <div class='div1' >1</div>    <div class='div2' >2</div></div>

As shown in the figure, if there are two child elements in a container, we want the width of the element to be 1 It is 200px, and the width of element 2 fills the remaining container width. The more violent method is the absolute layout padding percentage width mentioned earlier. The key css:

//暴力方法 绝对布局 + padding + 百分比.container{padding-left: 200px;position: relative;}.div1{height: 200px;position: absolute;left: 0;}.div2{width: 100%;}

I am an example. Poke me

Of course, .div2 here is a block-level element, and it is okay to have no width.

The second method is to use the mysterious "BFC" under specific conditions of the dom element to specifically clear the float. If you don't understand, search it and go directly. Key css

//优雅方法 float + BFC.div1{width:200px;float: left;}.div2{overflow: hidden;}

I am an example, poke me

, isn’t it much more elegant? Because under the condition that the specific width of .div1 is known, the BFC feature of .div2 can not be triggered. Setting its margin-left:200px can also achieve the same page effect. However, if .div1 changes, it needs to be changed manually. The margin-left of .div2 is changed, which is not flexible enough. If you are interested, you can try it yourself.

The third method is to use the flex layout of css3, which is the legendary new generation layout-flowing layout. Let’s not talk about the principle, but the key point is css

//前卫方法 flex.container{display: flex;}.div1{width:200px;}.div2{flex:1;}

I am an example, poke me

is it also very simple? If you want to know more principles, I still recommend it Take a look at the master's blog. This is just a place to summarize knowledge 0.0, and the flex layout may require a prefix in some browsers. You can go to http://pleeease.io/play/ to automatically add the browser prefix (a good bookmark)

The fourth method, which was once popular in the front-end circles in "ancient times", is the table layout, using css

//远古方法 table + table-cell.container{display:table;width: 100%;}.div1{width:200px;display: table-cell;}.div2{display:table-cell;}

I am an example, poke me

It actually looks quite simple, haha. . But maybe it was replaced by other layout methods because the name is not fancy enough or for other reasons

The examples mentioned above are all for two-column layout. If If there are more than two columns, the float BFC method is not easy to use, because only one column can be adaptively filled with the remaining width by clearing the float. Personally, I recommend using flex layout. The principle is the same, fixed width. Just set the width, and adaptively set the flex value according to the ratio. The table layout is not flexible enough. For table-cell with a fixed width, the width is set. If the width is not set, the remaining width will be equally divided.

To summarize the above, flex is the most flexible. In fact, there are many advantages of flex. For example, it can realize vertical and horizontal centering of

elements

.container{ display:flex;            align-items: center;//子元素垂直居中            justify-content: center;//子元素水平居中      }                

Of course, align-items and justify-content have different writing methods in old browsers, but most modern browsers support this writing method. To be conservative, when using Go to http://pleeease.io/play/ and http://caniuse.com/ to check it out

Vertical multi-column adaptive layout, etc.

.container{display: flex;flex-direction: column;height: 500px;}.div1{width: 100%; flex:1;}.div2{width: 100%;height: 200px;}.div3{width: 100%;flex:1;}

Just learn other more magical uses slowly. Please point out if there are any errors

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 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 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.

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

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

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 <time> 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

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

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

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

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment