search
HomeWeb Front-endCSS TutorialFront-end Summary·Basics·CSS Layout
Front-end Summary·Basics·CSS LayoutFeb 20, 2017 am 10:58 AM
css layout

This is the first article in the series "Front-end Summary·Basics·CSS", which mainly summarizes the basic knowledge of layout.

一、显示(display)
    1.1 盒模型(box-model)
    1.2 行内元素(inline) & 块元素(block)
    1.3 行内块元素(inline-block IE8+ IE6-7/tools)
    1.4 flex(IE11+ IE10/-ms-)
    1.5 none
二、位置(position)
三、补充
    3.1 浮动(float)
    3.2 层叠(z-index)
    3.3 溢出(overflow)
    3.4 resize(notIE)(CSS3)
    3.5 分栏(column)(IE10+ notOperaMini)(CSS3)

1. Display

1.1 Box-model

Look at the picture to understand the box model

前端总结·基础篇·CSS布局

The box model includes content, padding, border, and margin. The height we set for the element is the height of the content. Add padding to the element to make it appear taller.

The following is a demonstration example of a box model. To view the box model in Google Chrome, you can use the right-click>Properties>Computed method to view it.

<p>box-model</p>

.box-model {
    border: 1px solid red;
    padding: 20px;
}

Box model bounded by borders

Sometimes, we don’t want the height of the element to change when adding padding to it, which is not conducive We do the layout. You can set the element's box model to a box model bounded by a border (box-sizing: border-box;). In IE's weird mode, this box model is used by default.

Here is an example.

前端总结·基础篇·CSS布局

<p>box-model</p>

.box-model {
    box-sizing: border-box;  /* 设置成以边框为界的盒模型 */
    border: 1px solid red;
    height: 80px;
    padding: 10px;
}

1.2 Inline elements (inline) & block elements (block)

Block elements are generally used for layout

The block element can set the width and height, and occupies one line by default. The width and height of inline elements cannot be set, and the width is determined by its content.

Block elements have no height by default and will only have height if there is content. Inline elements have no height and width by default, they will only be there if there is content. Although the width and height cannot be set for inline elements, the width and height can be set after they are set to absolute positioning. (Positioning is discussed in the second section)

前端总结·基础篇·CSS布局

块元素:p p ul li table form html5(header section footer)。
行内元素:a font(em strong i) img span。

Block elements can be turned into inline elements

We usually turn li into inline elements Element to create navigation bar.


        
  • 首页
  •     
  • 文章
  •     
  • 留言
.nav li {     display: inline; }

There is only one block element per line

However, there can be multiple inline elements.

The empty block element will disappear in the layout

When debugging the page and want to display the position of the element in the layout, we usually add a height to the element .

If the inline element content is empty, it will disappear in the layout (empty is not recommended).

1.3 Inline-block IE8+ IE6-7/tools)

Compatibility is supported >= IE8, IE6-7 please refer to Focus on WEB front-end development.

Clear the gap between two elements

The gap between two elements comes from the space between elements, and can be eliminated by splicing the elements together. You can also use templates to eliminate them. For more discussion, please see Zhihu.


        
  • 首页
  •     文章
  •     留言

Alignment of elements under special circumstances

Three li's are juxtaposed and set to inline-block. When display:none; is set to the leftmost element, the other two li will sink to the bottom of the container. At this time, you need to set top alignment (vertical-align:top;) for these two li.


        
  • 首页

  •     
  • 文章

  •     
  • 留言

.hidden {display: none;} .left {height: 50px;} .center,.right {vertical-align: top;}

1.4 Flexible box (flex IE11+ IE10/-ms-)

Compatibility is to support >=IE11, IE10 needs to add the browser private prefix (-ms-).

Use elastic layout

If elastic layout is used, float clear vertical will be invalid. For more information, please see Ruan Yifeng’s blog.

display:flex;  // 块元素用
display:inline-flex;  // 行内元素用

Flexible Layout Settings

Let’s just treat these as a reference manual for now.

flex-direction:row/row-reverse/column/column-reverse;  // 方向
flex-wrap:nowrap/wrap/wrap-reverse;  // 换行
flex-flow:direction/wrap;  // 方向和换行的简写,默认为flex-flow:row nowrap;
justify-content:flex-start/center/flex-end/space-between/space-around;  // 主轴(默认为水平轴)
align-items:flex-start/center/flex-end/baseline/stretch;  // 交叉轴
align-contents:flex-start/center/flex-end/space-between/space-around/stretch;  // 多条轴线的对齐方式(单条无效)
order:number;  // 顺序(默认为0)
flex-grow:number;  // 宽度有余时放大比例(默认为0)
flex-shrink:number;  // 宽度有余时缩小比例(默认为1)
flex-basis:number/auto;  // 分配多余空间前,项目占据的主轴空间(默认auto)
flex:grow/shrink/basis;  // grow shrink basis三个属性的缩写
align-self:auto/flex-start/center/flex-end/baseline/stretch;;  // 单个项目的对齐方式,可覆盖align-items(默认auto)

The main axis (justify-content) can only center single-line elements

What about multiple lines? We can nest multiple rows in a p to construct a single row element.

The following is an example of horizontal and vertical centering.

<p>
    </p><p>
        </p><p>两行都会</p>
        <p>居中</p>
    


.parent {
    display: flex;  /* 使用flex布局 */
    align-items: center;  /* 交叉轴居中 */
    justify-content: center;  /* 主轴(默认为水平轴)居中 */
    background: red;
    height: 200px;
}

1.5 none

Hide elements

The following two methods can hide elements, but display:none; will clear the originally occupied layout space .

visibility:hidden;  // 隐藏元素
display:none;  // 隐藏元素并清除原本占用的布局空间

2. Position

Absolute, relative and fixed positioning can all use top, right, left and bottom elements. But the meanings expressed are different.

Clear the positioning of the layout space (absolute fixed)

Fixed positioning (fixed) will not change position as the mouse scrolls. It really fixes a certain position on the screen. The more common one is the advertisement in the lower right corner of the web page.

The positioning origin of absolute positioning (absolute) is the parent node of non-default positioning (static). It can be absolute fixed relative. If the parent node does not have these, the positioning origin is the body. Using one of these two positionings, the layout space originally occupied by the element will disappear (taken out of the document flow).

The following is an example of absolute positioning. The picture on the left is the default layout, and the picture on the right is after using absolute positioning (the original layout space of the element is cleared).

前端总结·基础篇·CSS布局
前端总结·基础篇·CSS布局

<p>I'm in front of you.</p>
<p>Hello</p>
<p>I'm next to you.</p>

.border {
    border: 1px solid blue;
}
.parent {
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: red;
    padding: 5px;
}

保留布局空间的定位(relative)

元素原本占用的布局空间依旧保留在文档流中。

前端总结·基础篇·CSS布局

相对定位(relative)相对原有位置定位。把上例中的absolute改成relative即可看到效果。使用这种方法,元素原本占用的布局会保留。

默认定位

默认定位为static。

巧用relative+absolute定位

父级采用relative,子代采用absolute。则子代的定位原点变为父级元素的左上角。

三、补充

3.1 浮动(float)

刚开始做页面的时候,还不知道浮动用了之后得清除,只气的想要砸键盘。现在好多了,知道了点技巧。更多技巧请见Tomson。

清除浮动(.clear)

这种方法需要在浮动元素后面添加一个空的节点,然后写上clear属性。兼容IE6需要添加zoom:1;。


        
  • 首页
  •     
  • 文章
  •     
  • 留言

 

我是另外一行

.nav li {     background-color: red;     float: left;     list-style-type: none; } .clear {     clear: both;     zoom:1;  /* IE 6 */ }

清除浮动(overflow:hidden;)

使用这种方法意味着,浮动元素得有一个父元素,并给父元素添加overflow:hidden;属性。


        
  • 首页
  •     
  • 文章
  •     
  • 留言

我是另外一行

.nav li {     background-color: red;     float: left;     list-style-type: none; } .nav {     overflow: hidden; }

文字环绕

浮动元素的另外一个妙用是实现文字环绕。

前端总结·基础篇·CSS布局

<p>
    </p><p></p>
    <p>这段文字很长,是用来测试文字环绕的。图片的占位将用p块来模拟。这段文字很长,是用来测试文字环绕的。图片的占位将用p块来模拟。</p>


.article {
    width: 200px;
}
.photo {
    width: 60px;
    height: 60px;
    background-color: red;
    float: right;
}

3.2 层叠(z-index)

层叠可以控制元素的上下放置关系。值越大越上面。

前端总结·基础篇·CSS布局

<p></p>
<p></p>

.z {
    position: absolute;
    top: 200px;
    left: 200px;
    width: 60px;
    height: 60px;
    background-color: red;
    opacity: .5;  /* 设置透明度为0.5 */
}
.zTwo {
    top: 220px;  /* 和第一个块错开以看到效果 */
    left: 220px;
    background-color: blue;
    opacity: .5;
}

3.3 溢出(overflow)

当页面内存在多个业内选项卡的时候,从一个没有右边滚动条的页面达到一个有滚动条的页面,将会产生页面跳动。解决办法是默认设置显示右边的滚动条。

overflow-x:visibility;

3.4 resize(notIE)(CSS3)

定义用户是否可调整当前元素的边框大小。

resize: horizontal(水平)/vertical(垂直)/both/none/inherit;

3.5 分栏(column)(IE10+ notOperaMini)(CSS3)

兼容性是IE>=10,不支持opera mini。更多请见菜鸟教程。

Front-end Summary·Basics·CSS Layout

<p>这一段文字用来测试分栏。这一段文字用来测试分栏。这一段文字用来测试分栏。</p>

p {
    width: 200px;  /* 把段落的宽度设短一点,便于效果的展现 */
    column-count: 3;  /* 设定需要分几栏 */
    column-gap: 20px;  /* 设定两栏间隔 */
}

结语

这一节主要参考了学习CSS布局,阮一峰的博客,Tomson,专注WEB前端开发,菜鸟教程,知乎和我在看的一本书《CSS设计指南》。

第一次写前端方面的长文章。写了改,改了写,然后继续改,又继续写。如此循环往复,只为让用词用句更加恰当一些。文中有什么不恰当的地方,还望指出。

更多前端总结·基础篇·CSS布局 相关文章请关注PHP中文网!

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
前端面试官常问的问题前端面试官常问的问题Mar 19, 2024 pm 02:24 PM

在前端开发面试中,常见问题涵盖广泛,包括HTML/CSS基础、JavaScript基础、框架和库、项目经验、算法和数据结构、性能优化、跨域请求、前端工程化、设计模式以及新技术和趋势。面试官的问题旨在评估候选人的技术技能、项目经验以及对行业趋势的理解。因此,应试者应充分准备这些方面,以展现自己的能力和专业知识。

如何通过纯CSS实现瀑布流布局的方法和技巧如何通过纯CSS实现瀑布流布局的方法和技巧Oct 20, 2023 pm 06:01 PM

如何通过纯CSS实现瀑布流布局的方法和技巧瀑布流布局(WaterfallLayout)是一种在网页设计中常见的布局方式,它通过将内容以多列的方式排列,每一列的高度不一致,从而形成像瀑布般的视觉效果。这种布局常常被应用于图片展示、商品展示等需要展示大量内容的情景中,具有良好的用户体验。实现瀑布流布局的方法有很多种,可以使用JavaScript或CSS来完成。

CSS布局单位的演变与应用:从像素到根据根元素字体大小的相对单位CSS布局单位的演变与应用:从像素到根据根元素字体大小的相对单位Jan 05, 2024 pm 05:41 PM

从px到rem:CSS布局单位的演变与应用引言:在前端开发中,我们经常需要用到CSS来实现页面布局。在过去的几年间,CSS布局单位也经历了演变和发展。最开始我们使用的是像素(px)作为单位来设置元素的大小和位置。然而,随着响应式设计的兴起和移动设备的普及,像素单位逐渐暴露出一些问题。为了解决这些问题,新的单位rem应运而生,并逐渐被广泛应用于CSS布局中。一

CSS布局技巧:实现圆形网格图标布局的最佳实践CSS布局技巧:实现圆形网格图标布局的最佳实践Oct 20, 2023 am 10:46 AM

CSS布局技巧:实现圆形网格图标布局的最佳实践在现代网页设计中,网格布局是一种常见且强大的布局技术。而圆形网格图标布局则是一种更加独特和有趣的设计选择。本文将介绍一些最佳实践和具体代码示例,帮助你实现圆形网格图标布局。HTML结构首先,我们需要设置一个容器元素,在这个容器里放置图标。我们可以使用一个无序列表(&lt;ul&gt;)作为容器,列表项(&lt;l

CSS Positions布局实现响应式图片排版的方法CSS Positions布局实现响应式图片排版的方法Sep 26, 2023 pm 01:37 PM

CSSPositions布局实现响应式图片排版的方法在现代Web开发中,响应式设计已成为一种必备的技能。而在响应式设计中,图片排版是一个重要的考虑因素之一。本文将介绍如何使用CSSPositions布局实现响应式图片排版,并提供具体的代码示例。CSSPositions是CSS的一种布局方式,它可以让我们根据需要在网页中任意定位元素。在响应式图片排版中,

CSS布局教程:实现圣杯布局的最佳方法CSS布局教程:实现圣杯布局的最佳方法Oct 19, 2023 am 10:19 AM

CSS布局教程:实现圣杯布局的最佳方法,附带代码示例引言:在网页开发中,布局是非常重要的一部分。好的布局能够使网页达到更好的可读性和可访问性。其中,圣杯布局是一种非常经典的布局方式,它能够在实现自适应的情况下使内容居中,保持优雅的显示效果。本文将为大家介绍如何使用最佳的方法实现圣杯布局,并给出具体的代码示例。一、什么是圣杯布局?圣杯布局是一种常见的三栏布局,

CSS布局教程:实现两栏响应式布局的最佳方法CSS布局教程:实现两栏响应式布局的最佳方法Oct 18, 2023 am 11:04 AM

CSS布局教程:实现两栏响应式布局的最佳方法简介:在网页设计中,响应式布局是一种非常重要的技术,它能使网页根据用户设备的屏幕大小和分辨率自动调整布局,提供更好的用户体验。在本教程中,我们将介绍如何使用CSS来实现一个简单的两栏响应式布局,并提供具体的代码示例。一、HTML结构:首先,我们需要创建一个基本的HTML结构,如下所示:&lt;!DOCTYPEht

CSS布局技巧:实现堆叠卡片效果的最佳实践CSS布局技巧:实现堆叠卡片效果的最佳实践Oct 22, 2023 am 08:19 AM

CSS布局技巧:实现堆叠卡片效果的最佳实践在现代网页设计中,卡片式布局成为了一种非常流行的设计趋势。卡片布局能够有效地展示信息,提供良好的用户体验,并且方便响应式设计。在这篇文章中,我们将分享一些实现堆叠卡片效果的最佳CSS布局技巧,同时提供具体的代码示例。使用Flexbox布局Flexbox是CSS3中引入的一种强大的布局模型。它能够轻松地实现堆叠卡片效果

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

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

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

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.