search
HomeWeb Front-endCSS TutorialCSS structure and layout
CSS structure and layoutFeb 18, 2017 pm 02:55 PM
css


0x00 min-content width adaptive

CSS3 new width attribute value width:min-content can set the width value of the container to the largest unbreakable line in the container The width (the widest word, picture, or box element with a fixed width)

figure{
    width:min-content;
    margin: auto;    
}

0x01 Set the style according to the number of sibling elements

We know the pseudo-element selector: only-child ,In fact, it can be equivalent to:first-child:last-child, that is, it is the first item and the last item at the same time, so logically it is unique. And :last-child is also a shortcut for :nth-last-child(1).

Then let’s think about a question, what does li:first-chidl:nth-last-child(4) represent? The result is _the first item in a list with exactly four list items_, ok , and then combine the sibling selector ~ to hit each item after it, you can achieve such a goal. When it contains exactly four list items, hit each item

li:first-child:nth-last-child(4),
li:first-child:nth-last-child(4) ~ li {
  
    background: red;
}

Combined with SASS, it will Simplify reuse

/*定义混合器*/
@mixin n-items($n){
    &:first-child:nth-last-child(#{$n}),
    &:first-child:nth-last-child(#{$n}) ~ &{
        @content;
    }
}

/*调用*/
li {
    @include n-items(4){
        /*属性与值写在这里*/
        background: red;
    }
}

:nth-child()

nth-child() is powerful in that it accepts an expression in the form of an+b, so you can naturally use its variant nth -child(n+4) In this form, it will select all child elements except the 1st, 2nd, and 3rd child elements.

ul li:first-child:nth-last-child(n+4),
ul li:first-child:nth-last-child(n+4) ~ li{
    /*当列表中至少包含四项时,命中包括该项之后的所有列表项*/
}

Of course, it’s more than that. How to play :nth-child() depends entirely on your imagination.

0x02 calc

Sometimes, if we need to implement a layout with a background width that fills the screen and a fixed content width, maybe we will design the DOM structure like this

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

CSS style:

footer{
    background: #333;
}

.wrapper{
    max-width: 900px;
    margin: 1em auto;
    height: 200px;
}

After using the calc() method, we don’t have to be so troublesome. We only need three lines of code to achieve it:

footer{
  background:#333;
  padding:1em calc(50% - 50px);
 }

Using clac(), we can perform simple calculations in CSS Arithmetic operation makes the DOM structure very concise without any redundancy. Of course, the shortcomings are also obvious. The code here will only see the effect when the parent of the footer element exceeds 900 px.

The percentage in calc() is parsed based on its parent

But, for the first time, we learned about the magic trick of cacl() in CSS3.

0x03 Vertical centering

Absolute positioning-based solution

There is a very common phenomenon in CSS, and the real solution often comes from where we least expect it. For example, you can combine the positon:absolute and transform:translate() attributes to achieve vertical centering

Because the percentage in the translate() transformation function is converted based on the width and height of the element itself, so , you can completely eliminate the dependence on fixed sizes.

Example: DOM structure

    <p>
        </p><h1 id="Am-i-center">Am i center?</h1>
        <p>Center me ,please!</p>
    

CSS code:

.main{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

CSS结构与布局

However, this method also has shortcomings:
1. In some browsers, this may cause blurry display because elements may be placed on half a pixel.
2. When absolute positioning is not suitable. And absolute positioning has too strong an impact on the entire layout.

FlexBox-based solution

There is no doubt that this is the best solution at present. Moreover, modern browser support for FlexBox is already quite high.

Using margin:auto for items based on FlexBox containers can be centered not only in the horizontal direction, but also in the vertical direction, even if no width is specified, because the width assigned to this element is equal to max-content.

CSS结构与布局

Another benefit of FlexBox is that the text can also be vertically centered. Just add align-items:center and justify-content:center to the elements using display:flex.

.main{
    background: deeppink;
    width: 50%;
    height: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

CSS结构与布局

Sometimes, we expect the height of the header and footer to be determined by its internal factors, and the content area The height of the block can automatically shrink to fill all available space. Again, this is easy with FlexBox.

body {
    min-height: 100vh;
    display:flex;
    flex-flow: column;

    header{
        /*heaer style*/
    }
    
    .main{
        flex:1;
    }

    footer{
        /*footer style*/
    }
}

We give body a height of min-height:100vh so that it will at least occupy the height of the entire viewport, and then give main a flex value greater than 0.

Question: What if the footer is fixed at the bottom of the screen? How to ensure that the footer does not cover the content area when the page is scrolled to the end?

For this question, it is purely a personal idea. You can add a p#_footer after footer.

The DOM structure at this time is as follows:

    <header><header>
    <p></p>
    <footer></footer>
    <p></p>
</header></header>

As for p#_footer, there is no need to add any content and style to it, as long as its height is equal to the height of the footer. , and for this, you can easily do it using jQuery.

$('#_footer').height($('footer').height())

In this way, you don’t have to worry about the responsive layout. Although it is a bit hacky, it is a perfect solution. Bingo!


##More For related articles on CSS structure and layout, please pay attention to 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
利用CSS怎么创建渐变色边框?5种方法分享利用CSS怎么创建渐变色边框?5种方法分享Oct 13, 2021 am 10:19 AM

利用CSS怎么创建渐变色边框?下面本篇文章给大家分享CSS实现渐变色边框的5种方法,希望对大家有所帮助!

css ul标签怎么去掉圆点css ul标签怎么去掉圆点Apr 25, 2022 pm 05:55 PM

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

css与xml的区别是什么css与xml的区别是什么Apr 24, 2022 am 11:21 AM

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

css3怎么实现鼠标隐藏效果css3怎么实现鼠标隐藏效果Apr 27, 2022 pm 05:20 PM

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

rtl在css是什么意思rtl在css是什么意思Apr 24, 2022 am 11:07 AM

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

css怎么实现英文小写转为大写css怎么实现英文小写转为大写Apr 25, 2022 pm 06:35 PM

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

css怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

怎么设置rotate在css3的旋转中心点怎么设置rotate在css3的旋转中心点Apr 24, 2022 am 10:50 AM

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。

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

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

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)