Search results
Add horizontal space between children. Use the space-x-* utilities to control the horizontal space between elements.
25 sie 2023 · By applying the space-y-4 class to the div with the comments.map function, you're ensuring that there's vertical spacing of 1rem (which is the default spacing) between each comment. You can adjust the space-y value to achieve your desired spacing.
Space between. Use justify-between to justify items along the container’s main axis such that there is an equal amount of space between each item:
There are two main ways to use "Space Between" in Tailwind: Using justify-between Class. Apply the justify-between class to the container element. This creates equal space between all child elements on the horizontal axis (left and right). Example: <div class="flex justify-between"> <div> Item 1 </div> <div> Item 2 </div> <div> Item 3 </div> </div>
If you'd like to customize your values for space between, padding, margin, width, and height all at once, use the theme.spacing section of your tailwind.config.js file. // tailwind.config.js module.exports = { theme: { spacing: { + sm: '8px', + md: '16px', + lg: '24px', + xl: '48px', } } }
26 lip 2022 · To add spacing between the elements just add “justify-between” on the parent div as shown on the code below. It adds space between the elements and can be used for multiple elements.
By default, Tailwind’s gap scale uses the default spacing scale. You can customize your spacing scale by editing theme.spacing or theme.extend.spacing in your tailwind.config.js file.