ant-design: Grid: setting vertical spacing on the gutter property of Row as grid spacing is not working?
- I have searched the issues of this repository and believe that this is not a duplicate.
Reproduction link
Steps to reproduce
Please check on codesandbox.
What is expected?
Downgrade the version to 4.8.2
demo
The vertical padding values should be set.
<div class="ant-col Col" style="padding: 12px 8px;">
...
</div>
What is actually happening?
The vertical padding values are missing.
<div class="ant-col Col" style="padding-left: 8px; padding-right: 8px;">
...
</div>
Environment | Info |
---|---|
antd | 4.12.2 |
React | 16.13.1 |
System | Ubuntu 20.04.1 LTS |
Browser | Chromium Version 88.0.4324.96 (Official Build) snap (64-bit) |
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Reactions: 4
- Comments: 21 (6 by maintainers)
its a breaking change and should be listed on changelog. how should we add padding at the bottom as of now?
@zombieJ Aha?! Not by design?
Grid Gutter
Not quite understand. So is it a breaking change? Maybe the component document need to be updated.
@afc163 @zombieJ any update on this please?
Also, just to confirm that we doing the following everywhere
and the vertical spacing on the row is only intermittently being set, 9 times out of 10 I don’t see any vertical padding, but after a few refreshes it appears. Obviously that isn’t acceptable.
Breaking change also for me, please reopen. It seems I have to revert up to 4.10.3 to have work again.
Breaking change for me! Almost every page broken, downgrade to
4.11.2
works.Downgrade to
4.11.2
should fix it.For the
sometimes return true & false
, it’s always return false at first mount since SSR env do not support flex layout. The flex gap check is triggeruseEffect
.Grid component is design to help simplify the layouting. It’s not expect to patch much style on the Grid component but use customize node instead:
to
We also meet some feedback when move v3 to v4 by using flex layout instead of float layout. It breaks user who put something in Row directly like:
We try to avoid breaking official documents under minor versions, but for some unexpected usage, we can only try to keep compatibility as much as possible. It is difficult to achieve a perfect balance, but for new features that can solve bugs and stay the same, we will prefer the former. If really don’t want to inject the method, choose the locked version maybe the last choice.
@zombieJ Thanks for getting back to me. In our case it looks as though sometimes (on the newest version of Chrome) that functions returns false, and sometimes it returns true. When it returns false, the paddings/margins are all wrong. Could you point me to where this function actually gets called?
Also, I think the main issue that people aren’t happy with is that whether that function returns true or false, it shouldn’t break the layout of the grid. The Ant framework should have checks in place to ensure that the grids look identical over all browsers, regardless of whether that browser supports flex row gap.
Thanks for getting back to us @zombieJ - however we shouldn’t have to hack anything to get the grid layout working as expected. The issue that I believe most of us are facing is that it’s intermittent, sometimes the padding exists and sometimes it doesn’t. My guess would be that the
detectFlexGapSupported
method returns a different result each time. I’ll have a check my end to see if it’s an issue with how we’re rendering our components and add my findings to this thread.Again, thanks for getting back to us, it’s good to know that there’s support available for this issue.