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
Select and change: click to display the current v...
>>>>>Ubuntu installation and confi...
When I first came into contact with docker, I was...
Table of contents Combining lookahead and lookbeh...
Preface In actual development, business requireme...
Web front-end optimization best practices: conten...
1. Radio grouping As long as the name is the same,...
Table of contents Preface 1. Introduction to Axio...
<br />This article will briefly introduce yo...
This article shares the installation tutorial of ...
Download: http://dev.mysql.com/downloads/mysql/ U...
question: In some browsers, such as 360 browser...
The input box always displays the input history wh...
1. Create a new virtual machine in VMware 15.5 1....
This article example shares the specific code of ...