search
HomeWeb Front-endCSS TutorialCSS grid functions you may not know about!

This article will introduce to you the grid functions in CSS: fit-content(), minmax(), repeat(). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

CSS grid functions you may not know about!

These three functions can only be used in grid layout

[Recommended tutorial: CSS video tutorial

fit-content()

fit-content function receives a parameter, a length value, and its function can be explained literally," Adapt to the content".

<div class="fit-content-wrapper">
  <div class="fit-item item1">test1dsssss3333333 sssssssssssssss sssssssssssssssssss sssssssssssssssssss ssssssssssssssssssss 这是用了fit-content(400px)</div>
  <div class="fit-item item2">test2 这是固定宽度width:400px</div>
  <div class="fit-item item3">test3 这是fit-content(400px)</div>
</div>

  .fit-content-wrapper{
    width: 100%;
    height: 200px;
    display: grid;
    grid-template-columns: fit-content(400px) 400px fit-content(400px);
    grid-gap: 10px;
  }
  .fit-item{
    background-color: rgb(20, 106, 177);
  }

Effect

CSS grid functions you may not know about!

##You can see that

When the content length is greater than the given length, the text will automatically wrap and will not exceed the given length. , when the content length is less than the given length, the length will be set according to the given content length.

Compatibility

CSS grid functions you may not know about!

Compatibility has no problem with modern browsers, and the new version of mainstream browsers can basically do it Supported, but cannot be used for projects that need to support IE.

minmax()

The minmax function represents a closed interval range [min,max]. When the value is less than or equal to min, the value is equal to min. When it is greater than or equal to max , the value is equal to max.

min-content, max-content

The minmax function receives the min-content, max-content parameters. These two parameters represent the shortest sum of the content. Maximum content length. See the case below.

    <div class="minmax-wrapper">
      <div class="minmax-item">
        test1dsssss3333333 sssssssssssssss sssssssssssssssssss
        sssssssssssssssssss ssssssssssssssssssss
      </div>
      <div class="minmax-item">
        <p>test2222222222</p>
        <p>test 232232323233</p>
        <p>min-content采用最短的内容长度</p>
      </div>
      <div class="minmax-item">
        <p>test</p>
        <p>test 232232323233222222</p>
        <p>max-content采用最长的内容长度</p>
      </div>
    </div>

      .minmax-wrapper {
        margin-top: 100px;
        width: 100vw;
        display: grid;
        grid-gap: 10px;
        grid-template-columns:
          minmax(300px, 500px) minmax(50px, min-content)
          minmax(100px, max-content);
      }

Effect

CSS grid functions you may not know about!

You can see that the minimum content width of the second item is the first p tag in the second item

CSS grid functions you may not know about!

When set to minmax(50px,min-content), it means that the maximum column width cannot exceed the content width of the first p tag.

The maximum content width of the third item is the content width of the third p tag

CSS grid functions you may not know about!

When set to minmax(100px,max-content) When, the maximum content width will not exceed the width of the third p tag

Compatibility

CSS grid functions you may not know about!

With the fit-content function Same, it doesn't support IE, but it has pretty good support for mainstream modern browsers.

repeat()

The repeat function is used to process grids in batches and receives 2 parameters. The first parameter indicates the number of executions, and the second parameter indicates the length. See the example below

    <div class="repeat-wrapper">
      <div class="repeat-item">test1 3</div>
      <div class="repeat-item">test2 23</div>
      <div class="repeat-item">test3 444</div>
    </div>

      .repeat-wrapper {
        margin-top: 100px;
        display: grid;
        grid-template-columns: repeat(3, 100px);
        grid-gap: 10px;
      }

Effect

CSS grid functions you may not know about!

grid-template-columns: repeat(3, 100px) is equivalent to grid-template-columns: 100px 100px 100px ;

auto-fill,auto-fit

In addition to specifying the specific number of times, repeat also receives these parameters auto-fill,auto-fit. , let’s talk about the concepts of these two parameters.

auto-fill

auto-fill means that the browser automatically fills the number of times based on the project. When the container is very wide, the width of the remaining grid will be automatically reserved. If the grid container has a definite size or a maximum size on the relevant axis, the number of repetitions is the largest possible positive integer that will not cause the grid to overflow its grid container.

    <div class="repeat-wrapper">
      <div class="repeat-item">test1 3</div>
      <div class="repeat-item">test2 23</div>
      <div class="repeat-item">test3 444</div>
      <div class="repeat-item">test3 4444</div>
      <div class="repeat-item">test3 444</div>
      <div class="repeat-item">test3 444</div>
    </div>

grid-template-columns: repeat(auto-fill, minmax(100px,1fr));

Effect


CSS grid functions you may not know about!

##auto-fit

auto-fit will also be automatically calculated, but Different from auto-fill, auto-fit will not retain the remaining empty cells, but will redistribute the remaining empty cells of auto-fill to each cell. See the example below

    <div class="repeat-wrapper">
      <div class="repeat-item">test1 3</div>
      <div class="repeat-item">test2 23</div>
      <div class="repeat-item">test3 444</div>
      <div class="repeat-item">test3 4444</div>
      <div class="repeat-item">test3 444</div>
      <div class="repeat-item">test3 444</div>
    </div>

grid-template-columns: repeat(auto-fit, minmax(100px,1fr));

Effect

CSS grid functions you may not know about!

Compatibility


CSS grid functions you may not know about!The latest versions of mainstream browsers are basically supported, but IE is still not supported.

Summary

These three grid functions greatly enrich the grid layout. I haven’t used many grid layouts before, but today I will learn these three After reading the function and some related parameters, I found that the grid layout is also very convenient compared to other layouts. I can try to use it in some of my own small projects later.

For more programming related knowledge, please visit:

Programming Video

! !

The above is the detailed content of CSS grid functions you may not know about!. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
利用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怎么设置i不是斜体css怎么设置i不是斜体Apr 20, 2022 am 10:36 AM

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

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

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

怎么设置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 Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

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