亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Home Web Front-end CSS Tutorial Grouping?Selection?List?Items Together?With?CSS?Grid

Grouping?Selection?List?Items Together?With?CSS?Grid

Mar 07, 2025 pm 04:36 PM

Grouping?Selection?List?Items Together?With?CSS?Grid

Cleverly group the selected list items through CSS Grid to improve the user experience! Selected item grouping is a common design strategy that helps users quickly distinguish selected and unselected items. For example, in the to-do list, completed items move upwards, making it easier for users to focus on the remaining tasks.

We will design a similar grouping UI. Unlike simple rearrangement of selected items, we will use CSS Grid to horizontally layout the selected items to further distinguish between selected and unselected items.

We will explore two methods. One uses auto-fill, which is suitable for situations where the selected item does not exceed the boundary of the grid container, ensuring stable layout; the other uses the span keyword of CSS Grid, which provides greater flexibility.

The HTML code of the two methods is the same:


    <li> <li>
The

code consists of an unordered list (<ul></ul>). We don't need to wrap the elements extra, as the CSS Grid attribute will determine the project layout. Note that I use implicit <label></label> elements to wrap, avoiding extra wrapping, but explicit tags are usually more supported by assistive technologies.

Method 1: Use auto-fill

ul {
  width: 250px;
  display: grid;
  gap: 14px 10px;
  grid-template-columns: repeat(auto-fill, 40px);
  justify-content: center;
  /* ...其他樣式... */
}

The <ul></ul> element containing the list item is set to display: grid to make it a grid container. It sets a gap of 14px and 10px between grid rows and columns. The grid content is horizontally aligned to the center. The grid-template-columns property specifies the size of the columns in the grid. In the initial state, all items are in a single column. Once the items are selected, they will move to the first row, with each selected item occupying a column. The key lies in the value. auto-fill The

value is used for the number of repetitions of the auto-fill function. It ensures that the columns are repeated, each column has the track size given in repeat() (40px in example) and can adapt to the boundaries of the grid container. repeat()

To ensure that the initial status of the list item is a single column:

li {
  width: inherit;
  grid-column: 1;
  /* 等同于:grid-column-start: 1; grid-column-end: auto; */
  /* ...其他樣式... */
}
When the item is selected (the

element is selected), use the <input> selector: :has(:checked)

li {
  width: inherit;
  grid-column: 1;
  /* ...其他樣式... */
  &:has(:checked) {
    grid-area: 1;
    /* 等同于:grid-row-start: 1; grid-column-start: auto; grid-row-end: auto; grid-column-end: auto; */
    width: 40px;
    /* ...其他樣式... */
  }
  /* ...其他樣式... */
}
This causes the selected items to be grouped to the top of the list and arranged horizontally.

Method 2: Use the keyword span

This method does not require the

attribute. The new grid-template-columns style is as follows: <ul></ul>

ul {
  width: 250px;
  display: grid;
  gap: 14px 10px;
  justify-content: center;
  justify-items: center;
  /* ...其他樣式... */
}

Helps align grid items. Updated justify-items: center style: <li>

li {
  width: inherit;
  grid-column: 1 / span 6;
  /* 等同于:grid-column-start: 1; grid-column-end: span 6; */
  /* ...其他樣式... */
}
Each item is placed in the first column, but now they also span six column tracks (because there are six items). This ensures that when multiple columns appear in the grid, unselected items after the selected item remains single, below the selected item—the unselected items now span multiple column tracks.

Declaration will keep the items centered. justify-items: center

li {
  width: inherit;
  grid-column: 1 / span 6;
  /* ...其他樣式... */
  &:has(:checked) {
    grid-area: 1;
    width: 120px;
    /* ...其他樣式... */
  }
  /* ...其他樣式... */
}
The width of the selected item has been increased to view the layout of the selected UI when the item overflows the container is selected.

Select order

The order of selected and unselected items will remain the same as the source order. If the screen order is required to match the user selection, the incremented order value is dynamically assigned when the item is selected.


    <li> <li>

Summary

CSS Grid makes both methods very flexible without a lot of configuration. By placing items on either axis (row or column) using auto-fill, you can easily group selected items into grid containers without affecting the layout of unselected items in the same container, as long as the selected items do not overflow the container.

If the item overflows the container, using the span method helps to maintain the layout regardless of the length of the selected item on the given axis. Some design alternatives to UI include grouping selected items to the end of a list, or swapping horizontal and vertical structures.

The above is the detailed content of Grouping?Selection?List?Items Together?With?CSS?Grid. 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

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

CSS tutorial for creating loading spinners and animations CSS tutorial for creating loading spinners and animations Jul 07, 2025 am 12:07 AM

There are three ways to create a CSS loading rotator: 1. Use the basic rotator of borders to achieve simple animation through HTML and CSS; 2. Use a custom rotator of multiple points to achieve the jump effect through different delay times; 3. Add a rotator in the button and switch classes through JavaScript to display the loading status. Each approach emphasizes the importance of design details such as color, size, accessibility and performance optimization to enhance the user experience.

Addressing CSS Browser Compatibility issues and prefixes Addressing CSS Browser Compatibility issues and prefixes Jul 07, 2025 am 01:44 AM

To deal with CSS browser compatibility and prefix issues, you need to understand the differences in browser support and use vendor prefixes reasonably. 1. Understand common problems such as Flexbox and Grid support, position:sticky invalid, and animation performance is different; 2. Check CanIuse confirmation feature support status; 3. Correctly use -webkit-, -moz-, -ms-, -o- and other manufacturer prefixes; 4. It is recommended to use Autoprefixer to automatically add prefixes; 5. Install PostCSS and configure browserslist to specify the target browser; 6. Automatically handle compatibility during construction; 7. Modernizr detection features can be used for old projects; 8. No need to pursue consistency of all browsers,

Styling visited links differently with CSS Styling visited links differently with CSS Jul 11, 2025 am 03:26 AM

Setting the style of links you have visited can improve the user experience, especially in content-intensive websites to help users navigate better. 1. Use CSS's: visited pseudo-class to define the style of the visited link, such as color changes; 2. Note that the browser only allows modification of some attributes due to privacy restrictions; 3. The color selection should be coordinated with the overall style to avoid abruptness; 4. The mobile terminal may not display this effect, and it is recommended to combine it with other visual prompts such as icon auxiliary logos.

Creating custom shapes with css clip-path Creating custom shapes with css clip-path Jul 09, 2025 am 01:29 AM

Use the clip-path attribute of CSS to crop elements into custom shapes, such as triangles, circular notches, polygons, etc., without relying on pictures or SVGs. Its advantages include: 1. Supports a variety of basic shapes such as circle, ellipse, polygon, etc.; 2. Responsive adjustment and adaptable to mobile terminals; 3. Easy to animation, and can be combined with hover or JavaScript to achieve dynamic effects; 4. It does not affect the layout flow, and only crops the display area. Common usages are such as circular clip-path:circle (50pxatcenter) and triangle clip-path:polygon (50%0%, 100 0%, 0 0%). Notice

What is the difference between display: inline, display: block, and display: inline-block? What is the difference between display: inline, display: block, and display: inline-block? Jul 11, 2025 am 03:25 AM

Themaindifferencesbetweendisplay:inline,block,andinline-blockinHTML/CSSarelayoutbehavior,spaceusage,andstylingcontrol.1.Inlineelementsflowwithtext,don’tstartonnewlines,ignorewidth/height,andonlyapplyhorizontalpadding/margins—idealforinlinetextstyling

How to create responsive images using CSS? How to create responsive images using CSS? Jul 15, 2025 am 01:10 AM

To create responsive images using CSS, it can be mainly achieved through the following methods: 1. Use max-width:100% and height:auto to allow the image to adapt to the container width while maintaining the proportion; 2. Use HTML's srcset and sizes attributes to intelligently load the image sources adapted to different screens; 3. Use object-fit and object-position to control image cropping and focus display. Together, these methods ensure that the images are presented clearly and beautifully on different devices.

What is CSS and what does it stand for? What is CSS and what does it stand for? Jul 03, 2025 am 01:48 AM

CSS,orCascadingStyleSheets,isthepartofwebdevelopmentthatcontrolsawebpage’svisualappearance,includingcolors,fonts,spacing,andlayout.Theterm“cascading”referstohowstylesareprioritized;forexample,inlinestylesoverrideexternalstyles,andspecificselectorslik

What is the CSS Painting API? What is the CSS Painting API? Jul 04, 2025 am 02:16 AM

TheCSSPaintingAPIenablesdynamicimagegenerationinCSSusingJavaScript.1.DeveloperscreateaPaintWorkletclasswithapaint()method.2.TheyregisteritviaregisterPaint().3.ThecustompaintfunctionisthenusedinCSSpropertieslikebackground-image.Thisallowsfordynamicvis

See all articles