CSS 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.
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
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
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); }
Compatibility
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; }
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));
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
The latest versions of mainstream browsers are basically supported, but IE is still not supported.
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 VideoThe 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text
