Home Web Front-end HTML Tutorial css multi-column adaptive layout_html/css_WEB-ITnose

css multi-column adaptive layout_html/css_WEB-ITnose

Jun 24, 2016 am 11:38 AM

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>
Copy after login

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%;}
Copy after login

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;}
Copy after login

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;}
Copy after login

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;}
Copy after login

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;//子元素水平居中      }                
Copy after login

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;}
Copy after login

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

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)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks 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 <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 <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

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

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

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.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

See all articles