How to implement the nine-square grid in CSS? Introduction to four ways to implement Jiugongge with CSS

不言
Release: 2018-10-27 16:27:33
forward
6401 people have browsed it

The content of this article is about how to implement Jiugong grid in CSS? The introduction of the four ways to implement Jiugongge in CSS has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Achieve the effect

The effect is as follows, it is a nine-square grid. Click on any small square in the nine-square grid, and its border will turn red.

How to implement the nine-square grid in CSS? Introduction to four ways to implement Jiugongge with CSS

Implementation method

I have summarized a total of 4 methods to achieve this effect. The first three methods are similar, and only the fourth table layout comparison special. Below I directly give the source code of the style and DOM structure related to each layout method.

1. float layout

Copy after login
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

There is nothing to talk about in implementing this 9-square grid with float layout. The key point is to set margin-left:-4px;margin-top:-4px for the li sub-item. ;This allows the borders between adjacent sub-blocks to overlap. You can see the effect without setting this negative margin, and you will have a deeper experience. I think the most essential part of the entire CSS is the hover style, which sets position:relative; for the li sub-item. The essence of this place is that after setting relative to an element, it will be separated from the document flow. At the same time, its cascading level will be higher than the ordinary document flow, and its content will be covered on the ordinary document flow. Then its covered border will be will be displayed, while blocking the border of adjacent elements. This setting is really essential. The next two methods are similar to this method, so I won’t explain too much.

2. Flex layout

Copy after login
  • 1
  • 2
  • 3
  • 4
  • flex
  • 6
  • 7
  • 8
  • 9

When using flex layout, one thing you need to pay attention to is not to set the height of the parent container ul.flex. If you set the height, then in the vertical direction The negative margin setting of the child item will be invalid. I don't know the specific reason. If you set the height and want the vertical margin value to take effect, then you can add an algin-content:flex-start; attribute to ul.flex. I don’t quite understand why this happens specifically. I hope someone who understands can provide some guidance in the comment area. In this flex layout, you can also add z-index:2; during hover to improve the overlay level.

3. Grid layout

Copy after login
  • 1
  • 2
  • 3
  • 4
  • grid
  • 6
  • 7
  • 8
  • 9

There is one thing you need to pay attention to here, that is, do not set the width and height for the li sub-items. In this grid layout, you can also add z-index:2; during hover to improve the overlay level.

4. table layout

Copy after login
1 2 3
1 table 3
1 2 3

When using table layout, there are the following points to note:

1. The setting value of line-height needs to be consistent with the value of height. . Because for a row in the table, its height depends on the height of the largest cell in the row or the row height. Inconsistency between line-height and height will cause the border in the column to overflow the cell.

2. If you want to make the border of a certain cell cover the border of other cells, you must set position:absolute; instead of relative for the cell.

3. The setting value of margin-left is 1.5 times that of border-width. This is my test result under chrome. I don’t know the specific reason. I hope someone can answer it in the comment area.

The above is the detailed content of How to implement the nine-square grid in CSS? Introduction to four ways to implement Jiugongge with CSS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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
Latest Issues
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!