inline-flex is the same as inline-block. It is a display:flex container for internal elements and an inline block for external elements. Description of the difference between the two:
In one sentence, when the Flex Box container does not set a width size limit, when display is specified as flex, the width of the FlexBox will fill the parent container, and when display is specified as inline-flex, the width of the FlexBox will wrap the child Item, as shown in the following figure: The corresponding code is as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> /*Flex container*/ .flex__container { display: inline-flex; background-color: gray; } /*Flex sub-item */ .flex__item { width: 50px; height: 50px; background-color: aqua; border: 1px solid black; } </style> </head> <body> <!--Flex container--> <div class="flex__container"> <!--Sub-Item in Flex container--> <div class="flex__item"></div> <div class="flex__item"></div> <div class="flex__item"></div> <div class="flex__item"></div> </div> </body> </html> This concludes this article on the differences between flex and inline-flex in CSS. For more information about CSS flex and inline-flex, please search previous articles on 123WORDPRESS.COM or continue browsing the related articles below. I hope you will support 123WORDPRESS.COM in the future! |
>>: An article teaches you how to use Vue's watch listener
MySQL CURDATE Function Introduction If used in a ...
This article shares a collection of Java problems...
1. Introduction Since pictures take up a lot of s...
This article shares the specific code of JavaScri...
Table of contents Preface 1. bat executes js 2. T...
Table of contents 1. Automatic installation using...
Preface As a heavy user of front-end frameworks, ...
Table of contents Preface Target first step: Step...
I recently read Yahoo's 34 Golden Rules and le...
Table of contents 1. Overview 1. Explain statemen...
Table of contents 1. Handwritten instanceof 2. Im...
When setting display:flex, justify-content: space...
1. Documentation Rules 1. Case sensitive. 2. The a...
<br />Table is an awkward tag in XHTML, so y...
Table of contents Overview What is lazy loading? ...