search
HomeWeb Front-endHTML TutorialWeb front-end tutorial CSS layout example
Web front-end tutorial CSS layout exampleJun 24, 2017 pm 02:01 PM
csswebfront endlayoutTutorial

##CSS Layout

Layout is an important part of CSS. This article summarizes the basics of CSS layout. Commonly used techniques, including commonly used horizontal centering and vertical centering methods, as well as various implementation methods of single-column layout and multi-column layout (including traditional box model layout and relatively new flex layout implementation), hope to bring it to friends who need it some help.

Table of Contents

1. Commonly used centering methods: horizontal centering, vertical centering,

2. Single-column layout

3. Two-column & three-column layout: float+margin, position+margin, holy grail layout (float+negative margin), double flying wing layout (float+negative margin), flex layout

If you want to learn and communicate web front-end technologies such as html5css3, and want to know more about front-end aspects For content, you can join our QQ learning group: 27062964, learn and communicate together, improve yourself, and share learning materials and source code. Or click on the link to join the QQ group directly:

Summary

1. Commonly used centering methods

Centering is very common in layouts , we assume that the DOM document structure is as follows, the child element should be centered in the parent element:

Horizontal centering

Whether the child element is an inline element or a block element, the width is certain or undetermined, the layout scheme adopted is different. Let’s analyze:

Inline elements: Set text-align:center on the parent element;

Fixed-width block elements: Set the left and right margin values ​​to auto;

Indefinite width Block element: Set the child element to display:inline, and then set text-align:center;

General solution on the parent element: flex layout, set display:flex;justify-content:center; on the parent element

Vertical centering

The vertical centering scheme is different for single-line inline text, multi-line inline text and block elements.

The parent element is certain, and the child element is a single line of inline text: set the height of the parent element equal to the line height line-height

The parent element is certain, and the child element is multi-line inline text: set the parent element display:table-cell or inline-block, then set vertical-align:middle;

Block elements: set sub-element position:fixed (absolute), and then set margin:auto;

General solution: flex layout, set {display:flex; align-items:center;} to the parent element.

2. Single-column layout

Features: fixed width, horizontal centering

There are two common single-column layouts Type:

One is that the header, content, and footer widths are all the same, which generally does not occupy the maximum width of the browser, but when the browser width is reduced below its maximum width, the width will adapt .

One is that the width of the header and footer is the browser width, but the content and the content in the header and footer will not fill the browser width.

For the first type, set width or max-width uniformly for header, content, and footer, and use margin:auto to achieve centering.

DOM Document:

CSS Manifest:

For the second type, the content width of the header and footer is 100%, but the content area and content of the header and footer are uniformly set to max-width, and centered through margin:auto.

DOM Document:

CSS Manifest:

3. Two-column & three-column layout

The characteristic of the two-column layout is that the sidebar has a fixed width. Main column adaptive width. The three-column layout is characterized by two fixed-width columns on both sides and an adaptive width in the middle column.

The reason why two-column layout and three-column layout are written together is because the two-column layout can be regarded as a three-column layout with one sidebar removed, and the layout ideas are similar. For the traditional implementation method, we mainly discuss the first three layouts in the above picture, the classic two-column layout with side columns and the three-column layout with left and right side columns. For the flex layout, the five layouts in the above picture are implemented.

a. float+margin

Principle description: Set the two side columns to float left and right respectively. The middle column uses the outer margin to make space for the two side columns. The width of the middle column Adapt to the browser window.

DOM document:

Layout steps:

Set the width of the sidebars on both sides, add a left float to the left column, and add a float to the right column.

Set the left and right margins for the main panel. The value of margin-left is the width of the left column, and the value of margin-right is the width of the right column.

CSS list:

Some instructions:

* Pay attention to the writing order of the DOM document, first write two For the side column, write the main panel. After replacement, the side column will be squeezed into the next column (used in both Holy Grail layout and Double Flying Wing layout). * This layout method is relatively simple and clear, but the disadvantage is that the sidebar is rendered first instead of the more important main panel.

How to implement two columns

If it is a two-column layout with a sidebar on the left, remove the right column and do not set the margin-right value of the main panel. The other operations are the same. vice versa.

b. position+margin

Principle description: The two side columns are fixed through absolute positioning, and the margins are also used to make space for the two side columns, and the middle column is adaptive.

DOM document:

Layout steps:

Set the width of the sidebars on both sides and set the positioning method for absolute positioning.

Set the top value of both sides of the column to 0, set the left value of the left column to 0, and set the right value of the right column to 0.

Set the left and right margins for the main panel. The value of margin-left is the width of the left column, and the value of margin-right is the width of the right column.

CSS List:

Some notes:

Compared with the previous method, this method The position of the sidebar is fixed through positioning.

If the middle column contains a minimum width limit, or contains an internal element with a width, and the browser window is small enough, the main panel and the side column will overlap.

How to implement two columns

If it is a two-column layout with a sidebar on the left, remove the right column and do not set the margin-right value of the main panel. The other operations are the same. vice versa.

c. Holy Grail layout (float + negative margin + padding + position)

Principle description:

Set the width of the main panel to 100%, the main panel and the two side columns All are set to float, usually left floating. At this time, the two sidebars will be squeezed out by the main panel. Pull up the floating sidebar through negative margins. The negative margin of the left column is 100%, which is exactly the width of the window. Therefore, it will run from the left side under the main panel to the left side aligned with the main panel. The right side column is here. When floating to the left below the main panel, set the negative margin to negative and its own width just floats to the right of the main panel alignment. In order to prevent the sidebar from blocking the content of the main panel, set the left and right padding values ​​in the outer layer to the width of the left and right sidebars to make room for the sidebars. At this time, the width of the main panel is reduced. Since the negative margins of the side columns are relative to the main panel, the two side columns will not be docked on the left and right sides as we ideally want, but will move closer to the middle along with the reduced main panel. At this time, use relative layout and adjust the two sidebars to the corresponding positions.

DOM document:

Layout steps :

All three are set to float to the left.

Set the main width to 100% and set the width of both side columns.

Set negative margins, sub sets the negative left margin to 100%, and extra sets the negative left margin to the negative own width.

Set the padding value of main to leave space for the left and right sub-panels.

Set the two sub-panels to relative positioning, the left value of sub is the negative sub width, and the right value of extra is the negative extra width.

CSS List:

Some instructions

The writing order of DOM elements must not be changed.

When the main content part of the panel is smaller than the width of the sub-panels on both sides, the layout will be messed up. You can avoid problems by setting the min-width attribute of main or using a double-wing layout.

How to implement two columns

If it is a two-column layout with a sidebar on the left, remove the right column and do not set the padding-right value of the main panel. The other operations are the same. vice versa.

d. Double flying wing layout (float + negative margin + margin)

Principle description:

The ideas of double flying wing layout and Holy Grail layout are somewhat similar, both use floating and Negative margins, but the double flying wing layout has improved on the Holy Grail layout. It adds a layer of div on the main element and sets margin. Since the negative margins of both sides of the columns are relative to the main-wrap, the main Changes in the margin value will not affect the two side columns, so the step of setting the relative layout of the two side columns is omitted.

DOM document:

Layout steps:

All three are set to float to the left.

Set the main-wrap width to 100% and set the width of the two sidebars.

Set negative margins, sub sets the negative left margin to 100%, and extra sets the negative left margin to the negative own width.

Set the margin value of main to leave space for the left and right sub-panels.

CSS list:

Some explanations

The Holy Grail uses padding, while the double flying wings use margin , which solves the shortcoming that the minimum width of the main of the Holy Grail layout cannot be smaller than the left column.

Double flying wing layout does not need to set relative layout and corresponding left and right values.

By introducing relative layout, various combinations of three-column layout can be realized. For example, setting position: relative; left: 190px; on the right column can realize sub+extra+main layout.

Implementation method of two columns

If it is a two-column layout with a sidebar on the left, remove the right column and do not set the margin-right value of main-wrap. The other operations are the same. vice versa.

The following is the flex layout code for the five layouts:

DOM document:

CSS list

Compared with several traditional layout schemes mentioned before, the flex layout code is extremely concise and very versatile, using simple three lines of CSS That is, five common layouts are implemented.

Summary

The traditional layout method is based on the box model and relies on the display attribute + position attribute + float attribute. The logic is relatively complex, and for implementation Some special effects, such as vertical centering, are particularly complex and cumbersome. The flex container in flex layout can dynamically adjust the aspect ratio and order of sub-elements according to the actual available space, so that the elements can utilize the available space as much as possible, while also shrinking to avoid exceeding it. Flex layout provides a simple, complete, and responsive layout solution.

The above is the detailed content of Web front-end tutorial CSS layout example. For more information, please follow other related articles on the PHP Chinese website!

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
Web Speech API开发者指南:它是什么以及如何工作Web Speech API开发者指南:它是什么以及如何工作Apr 11, 2023 pm 07:22 PM

​译者 | 李睿审校 | 孙淑娟Web Speech API是一种Web技术,允许用户将语音数据合并到应用程序中。它可以通过浏览器将语音转换为文本,反之亦然。Web Speech API于2012年由W3C社区引入。而在十年之后,这个API仍在开发中,这是因为浏览器兼容性有限。该API既支持短时输入片段,例如一个口头命令,也支持长时连续的输入。广泛的听写能力使它非常适合与Applause应用程序集成,而简短的输入很适合语言翻译。语音识别对可访问性产生了巨大的影响。残疾用户可以使用语音更轻松地浏览

如何使用Docker部署Java Web应用程序如何使用Docker部署Java Web应用程序Apr 25, 2023 pm 08:28 PM

docker部署javaweb系统1.在root目录下创建一个路径test/appmkdirtest&&cdtest&&mkdirapp&&cdapp2.将apache-tomcat-7.0.29.tar.gz及jdk-7u25-linux-x64.tar.gz拷贝到app目录下3.解压两个tar.gz文件tar-zxvfapache-tomcat-7.0.29.tar.gztar-zxvfjdk-7u25-linux-x64.tar.gz4.对解

web端是什么意思web端是什么意思Apr 17, 2019 pm 04:01 PM

web端指的是电脑端的网页版。在网页设计中我们称web为网页,它表现为三种形式,分别是超文本(hypertext)、超媒体(hypermedia)和超文本传输协议(HTTP)。

web前端和后端开发有什么区别web前端和后端开发有什么区别Jan 29, 2023 am 10:27 AM

区别:1、前端指的是用户可见的界面,后端是指用户看不见的东西,考虑的是底层业务逻辑的实现,平台的稳定性与性能等。2、前端开发用到的技术包括html5、css3、js、jquery、Bootstrap、Node.js、Vue等;而后端开发用到的是java、php、Http协议等服务器技术。3、从应用范围来看,前端开发不仅被常人所知,且应用场景也要比后端广泛的太多太多。

Python轻量级Web框架:Bottle库!Python轻量级Web框架:Bottle库!Apr 13, 2023 pm 02:10 PM

和它本身的轻便一样,Bottle库的使用也十分简单。相信在看到本文前,读者对python也已经有了简单的了解。那么究竟何种神秘的操作,才能用百行代码完成一个服务器的功能?让我们拭目以待。1. Bottle库安装1)使用pip安装2)下载Bottle文件https://github.com/bottlepy/bottle/blob/master/bottle.py2.“HelloWorld!”所谓万事功成先HelloWorld,从这个简单的示例中,了解Bottle的基本机制。先上代码:首先我们从b

web前端打包工具有哪些web前端打包工具有哪些Aug 23, 2022 pm 05:31 PM

web前端打包工具有:1、Webpack,是一个模块化管理工具和打包工具可以将不同模块的文件打包整合在一起,并且保证它们之间的引用正确,执行有序;2、Grunt,一个前端打包构建工具;3、Gulp,用代码方式来写打包脚本;4、Rollup,ES6模块化打包工具;5、Parcel,一款速度极快、零配置的web应用程序打包器;6、equireJS,是一个JS文件和模块加载器。

深入探讨“高并发大流量”访问的解决思路和方案深入探讨“高并发大流量”访问的解决思路和方案May 11, 2022 pm 02:18 PM

怎么解决高并发大流量问题?下面本篇文章就来给大家分享下高并发大流量web解决思路及方案,希望对大家有所帮助!

web是前端还是后端web是前端还是后端Aug 24, 2022 pm 04:10 PM

web有前端,也有后端。web前端也被称为“客户端”,是关于用户可以看到和体验的网站的视觉方面,即用户所看到的一切Web浏览器展示的内容,涉及用户可以看到,触摸和体验的一切。web后端也称为“服务器端”,是用户在浏览器中无法查看和交互的所有内容,web后端负责存储和组织数据,并确保web前端的所有内容都能正常工作。web后端与前端通信,发送和接收信息以显示为网页。

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
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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

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.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version