HTML tutorial: How to use Grid layout for multi-column layout
HTML tutorial: How to use Grid layout for multi-column layout
Grid layout is one of the commonly used layout methods in modern web design. It can divide web page content into Multiple columns and rows for flexible multi-column layouts. This article will introduce how to use Grid layout to create a multi-column web page layout and provide specific code examples.
1. Introduction to Grid Layout
Grid layout is a two-dimensional layout system that can divide web content into multiple grid areas. These grid areas can be defined and arranged according to design needs, making the layout of web pages more flexible and free. Grid layout implements layout by setting grid containers and grid items, and adjusts it by specifying the row and column size, position, and spacing of the grid.
2. Create a grid container
To use Grid layout, you first need to create a grid container in the HTML document. You can use the <div> element as a grid container, and then define the layout of the container through CSS styles. <p>The sample code is as follows: </p><pre class='brush:php;toolbar:false;'><div class="grid-container">
... 网格项内容 ...
</div></pre><p>3. Set grid layout</p>
<p>In the style sheet, you can enable Grid layout by specifying the display attribute of the grid container as grid. You can use grid templates to define the grid's row and column size, position, and spacing. </p>
<p>The sample code is as follows: </p><pre class='brush:php;toolbar:false;'>.grid-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr; /* 三列等宽 */
grid-template-rows: auto; /* 自动调整行高 */
gap: 20px; /* 网格项间距为20px */
}</pre><p>In the above code, <code>grid-template-columns
specifies the number of columns of the grid and the width of each column, and ## is used here. #1fr unit, indicating that the width of each column is evenly distributed.
grid-template-rows specifies the row height of the grid. Use
auto to automatically adjust the row height.
gap specifies the spacing between grid items, here set to 20px.
<div class="grid-container"> <div class="grid-item">网格项1</div> <div class="grid-item">网格项2</div> <div class="grid-item">网格项3</div> </div>5. Define grid item styles Define the layout and style of grid items through CSS styles. The sample code is as follows:
.grid-item { background-color: #f5f5f5; padding: 20px; }In the above code, the background color of the grid item is defined as #f5f5f5, and the padding is 20px. Grid items can be styled according to actual needs. 6. Adjust layoutIn grid layout, you can achieve different layout effects by adjusting the properties of grid containers and grid items. The following are some commonly used properties:
- grid-column-start
and
grid-column-end: define the column start and end of grid items Location.
- grid-row-start
and
grid-row-end: Define the starting and ending positions of the rows of grid items.
- grid-area
: Define the row and column positions of grid items at the same time.
- justify-self
: Defines the alignment of grid items in the column direction.
- align-self
: Defines the alignment of grid items in the row direction.
The above is the detailed content of HTML tutorial: How to use Grid layout for multi-column layout. For more information, please follow other related articles on the PHP Chinese website!

Solution to implement multi-project carousel in Bootstrap4 Implementing multi-project carousel in Bootstrap4 is not an easy task. Although Bootstrap...

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

The default playback control style of HTML video cannot be modified directly through CSS. 1. Create custom controls using JavaScript. 2. Beautify these controls through CSS. 3. Consider compatibility, user experience and performance, using libraries such as Video.js or Plyr can simplify the process.

Potential problems with using native select on mobile phones When developing mobile applications, we often encounter the need for selecting boxes. Normally, developers...

What are the disadvantages of using native select on your phone? When developing applications on mobile devices, it is very important to choose the right UI components. Many developers...

Use Three.js and Octree to optimize collision handling of third-person roaming in the room. Use Octree in Three.js to implement third-person roaming in the room and add collisions...

Issues with native select on mobile phones When developing applications on mobile devices, we often encounter scenarios where users need to make choices. Although native sel...

Exploring the implementation principle of mouse scrolling events When browsing some websites, you may notice that some page elements still allow scrolling the entire page when the mouse is hovering...


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

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

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

SublimeText3 Linux new version
SublimeText3 Linux latest version

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