Flex layout allows subitems to maintain their own height

Flex layout allows subitems to maintain their own height

When using Flex layout, you will find that when arranged horizontally, the height of all child items becomes the same.


This is because Flex layout will default to:

  • Arrange all subitems horizontally.
  • By default, no automatic line wrapping is enabled.
  • Makes the child the same width as its content and sets the height of all children to the height of the tallest child.

It is very inconvenient to set the background color in this way. Then you can set align-items to flex-start or other values ​​of the align-items attribute on the parent item, and the child item will maintain its own height.

.fat{
	display: flex;
	align-items:flex-start;
}

The effect is as follows:

This is the end of this article about how to use Flex layout to keep child items at their own height. For more information about how to use Flex layout to keep child items at their own height, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

<<:  Use viewport in meta tag to define screen css

>>:  Specific use of Mysql prepare preprocessing

Recommend

jQuery implements employee management registration page

This article example shares the specific code of ...

Summary of Commonly Used MySQL Commands in Linux Operating System

Here are some common MySQL commands for you: -- S...

How to deploy HTTPS for free on Tencent Cloud

Recently, when I was writing a WeChat applet, the...

How to prevent computer slowdown when WIN10 has multiple databases installed

Enable the service when you need it, and disable ...

Solve the MySQL login 1045 problem under centos

Since the entire application needs to be deployed...

MySQL derived table (Derived Table) simple usage example analysis

This article uses an example to describe the simp...

Detailed explanation of the basic use of Apache POI

Table of contents Basic Introduction Getting Star...

Four ways to modify the default CSS style of element-ui components in Vue

Table of contents Preface 1. Use global unified o...

MySQL integrity constraints definition and example tutorial

Table of contents Integrity constraints Definitio...

How to deploy Spring Boot using Docker

The development of Docker technology provides a m...

HTML Basics_General Tags, Common Tags and Tables

Part 1 HTML <html> -- start tag <head>...

Nginx configuration SSL and WSS steps introduction

Table of contents Preface 1. Nginx installation 1...

Writing a web calculator using javascript

This article mainly records the effect of using j...

Detailed explanation of the calculation method of flex-grow and flex-shrink in flex layout

Flex(彈性布局) in CSS can flexibly control the layout...