vertical spacing between Row.
See original GitHub issueI want to have vertical spacing between Row, similar to gutter.
<Row gutter={8}></Row>
Something like vgutter
will help.
<Row vgutter={8}></Row>
Issue Analytics
- State:
- Created 7 years ago
- Reactions:37
- Comments:25 (1 by maintainers)
Top Results From Across the Web
How to Add Space Between Rows in the Table - W3docs
The space between two rows in a <table> can be added by using the CSS border-spacing and border-collapse properties. The border-spacing property is...
Read more >row-gap - CSS: Cascading Style Sheets - MDN Web Docs
The row-gap CSS property sets the size of the gap (gutter) between an element's rows.
Read more >Vertical spacing between bootstrap rows - CodePen
<p>Below are two examples of how to create vertical space between Bootstrap rows</p>. 7. </div>. 8. . 9. </div>. 10. 11. <div class="row">....
Read more >Space between two rows in a table? - html - Stack Overflow
To add space between rows and columns, one can use grid-gap: [vertical] [horizontal] . To prevent "too thick / double border" with zero...
Read more >How improve vertical spacing between rows of table? - TeX
I think it's better to use arraystretch to change the spacing between rows. The disadvantage is it becomes asymmetrical when factors are larger ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Just
<Row style={{ marginBottom: 8 }}></Row>
.Wouldn’t that mean the margin on the bottom isn’t responsive the way gutter is? It would be nice to have something responsive.