============================================== CSS Flexbox Inspector: Examine Flexbox layouts ============================================== The **Flexbox Inspector** allows you to examine `CSS Flexbox Layouts `_ using the Firefox DevTools, which is useful for discovering flex containers on a page, examining and modifying them, debugging layout issues, and more. Discovering Flex Containers *************************** When an HTML element on your page has `display: flex `_ applied to it, a number of features are made available in the DevTools to provide easy access to Flexbox layout features. In the HTML pane ---------------- In the :ref:`HTML Pane `, an element laid out with Flexbox has the word ``flex`` next to it as shown in the following image: .. image:: html-pane.png :alt: Indicators in the inspector showing an element is a flex container :class: center Click the word ``flex`` in the HTML pane to keep the overlay visible when you move the mouse away from the container. In the infobar -------------- When you hover over an element in the HTML pane, you will see a tooltip that gives you more information about the element. When you hover over a flex container or flex item, the tooltip includes the appropriate information. This header is a flex container: .. image:: infobar-cont.png :alt: Tooltip showing element is a flex container :class: center Each navbar link is a flex item: .. image:: infobar-item.png :alt: Tooltip showing an element is a flex item :class: center The ``nav`` element within the header is both a flex item and a flex container which holds the navigation links: .. image:: infobar-both.png :alt: Tooltip showing an element is both a flex container and a flex item :class: center In the CSS pane --------------- .. |image1| image:: flexbox_icon.gif :width: 20 In the :ref:`CSS pane `'s Rules view, any instance of a `display: flex `_ declaration gets a small Flexbox icon |image1| next to the word ``flex``. .. image:: css-pane.png :alt: The CSS pane of the Firefox devtools, showing the CSS for a flex container with an icon to toggle the Flexbox overly :class: center Clicking the icon toggles the display of an overlay on the page, which appears over the selected flex container that displays an outline around each flex item: .. image:: overlay.png :alt: Flexbox overlay showing a flex container and its children :class: center The overlay will still be shown when you select other elements from the Inspector panel, so you can edit related CSS properties and see how the flex items are affected by your changes. The Layout Flex Container section --------------------------------- The CSS pane's Layout view includes a collapsible "Flex Container" section. If you expand the section without selecting a flexbox container, it will only display the message, "Select a Flex container or item to continue". Once you select an element whose display is defined as flex, the panel will include a number of options for viewing details about the flex container and flex items within it. You can find out more about those in the section below. .. note:: The Layout view can be found underneath the *Layout* tab on the right-hand pane of the Page Inspector. The above and below screenshots should give you further hints on how to get to this. Flex Container options ********************** The Flex Container section of the Layout view looks like this: .. image:: flex-cont.png :alt: Layout pane in Firefox Devtools showing options for the flexbox overlay :class: center There are two settings you can change in the Flex Container section: - You can control the color of the overlay by clicking on the small circle next to the selector. This will toggle a color picker so you can select a different color for the overlay. - The switch on the right-hand side of the Flex Container section will also toggle the overlay on and off. Flex item properties ******************** The flex items within the flex container are displayed as a numbered list in the Flex Items section. Each entry displays the item's selector. Hover over an element to highlight it on the page. .. image:: flex-items.png :alt: List of flex items displayed in the Layout pane of Firefox Devtools :class: center If you click on the item, the display shifts to show details about that element: .. image:: item-details.png :alt: Details of flex item sizing in the Layout pane of Firefox DevTools :class: center This view shows information about the calculations for the size of the selected flex item: - A diagram visualizing the sizing of the flex item - Content Size - the size of the component without any restraints imposed on it by its parent - Flexibility - how much a flex item grew or shrunk based on its flex-grow value when there is extra free space or its flex-shrink value when there is not enough space - Minimum Size (only appears when an item is clamped to its minimum size) - the minimum content size of a flex item when there is no more free space in the flex container - Final Size - the size of the flex item after all sizing constraints imposed on it have been applied (based on the values of flex-grow, flex-shrink and flex-basis) At the top of the section is a drop-down list of all the items in the selected flexbox container: .. image:: select-items.png :alt: Dropdown in Layout pane that allows you to select between different flex children :class: border You can use this drop-down to select any of the other flex items in the flex container.