Table of Contents
fit-content()
Compatibility
minmax()
min-content, max-content
repeat()
auto-fill,auto-fit
auto-fill
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
Home Web Front-end CSS Tutorial CSS grid functions you may not know about!

CSS grid functions you may not know about!

Mar 05, 2021 am 10:48 AM
css

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

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

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

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

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

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 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)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
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 does placeholder mean in vue What does placeholder mean in vue May 07, 2024 am 09:57 AM

In Vue.js, the placeholder attribute specifies the placeholder text of the input element, which is displayed when the user has not entered content, provides input tips or examples, and improves form accessibility. Its usage is to set the placeholder attribute on the input element and customize the appearance using CSS. Best practices include being relevant to the input, being short and clear, avoiding default text, and considering accessibility.

What does span mean in js What does span mean in js May 06, 2024 am 11:42 AM

The span tag can add styles, attributes, or behaviors to text. It is used to: add styles, such as color and font size. Set attributes such as id, class, etc. Associated behaviors such as clicks, hovers, etc. Mark text for further processing or citation.

What does rem mean in js What does rem mean in js May 06, 2024 am 11:30 AM

REM in CSS is a relative unit relative to the font size of the root element (html). It has the following characteristics: relative to the root element font size, not affected by the parent element. When the root element's font size changes, elements using REM will adjust accordingly. Can be used with any CSS property. Advantages of using REM include: Responsiveness: Keep text readable on different devices and screen sizes. Consistency: Make sure font sizes are consistent throughout your website. Scalability: Easily change the global font size by adjusting the root element font size.

How to introduce images into vue How to introduce images into vue May 02, 2024 pm 10:48 PM

There are five ways to introduce images in Vue: through URL, require function, static file, v-bind directive and CSS background image. Dynamic images can be handled in Vue's computed properties or listeners, and bundled tools can be used to optimize image loading. Make sure the path is correct otherwise a loading error will appear.

What is the function of span tag What is the function of span tag Apr 30, 2024 pm 01:54 PM

The SPAN tag is an inline HTML tag that is used to highlight text by applying attributes such as style, color, and font size. This includes emphasizing text, grouping text, adding hover effects, and dynamically updating content. It is used by placing <span> and </span> tags around the text you want to emphasize, and is manipulated via CSS styling or JavaScript. The benefits of SPAN tags include semantic clarity, styling flexibility, and ease of maintenance.

How to wrap prompt in js How to wrap prompt in js May 01, 2024 am 06:24 AM

When using the prompt() method in JavaScript, you can achieve line breaks through the following three methods: 1. Insert the "\n" character at the position where you want to break the line; 2. Use the line break character in the prompt text; 3. Use CSS's "white" -space: pre" style forces line breaks.

What is node in js What is node in js May 07, 2024 pm 09:06 PM

Nodes are entities in the JavaScript DOM that represent HTML elements. They represent a specific element in the page and can be used to access and manipulate that element. Common node types include element nodes, text nodes, comment nodes, and document nodes. Through DOM methods such as getElementById(), you can access nodes and operate on them, including modifying properties, adding/removing child nodes, inserting/replacing nodes, and cloning nodes. Node traversal helps navigate within the DOM structure. Nodes are useful for dynamically creating page content, event handling, animation, and data binding.

What language is the browser plug-in written in? What language is the browser plug-in written in? May 08, 2024 pm 09:36 PM

Browser plug-ins are usually written in the following languages: Front-end languages: JavaScript, HTML, CSS Back-end languages: C++, Rust, WebAssembly Other languages: Python, Java

See all articles