-
Is there any way that I can customize my padding and margin? Also, I want to get rid of the default margin between cells in a grid layout. I've tried all possible ways but I didn't come to a solution. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Textual's CSS has both padding and margin properties.
The grid has a number of properties for changing its appearance, amongst them is
It would be helpful if you gave some indication as to what ways you did try and how they didn't work for you. The above would seem to be what you're looking for, so if they didn't work for you, a small stand-alone example of what you're trying with an explanation of what you're wanting to do and how it's failing will make it easy to help. |
Beta Was this translation helpful? Give feedback.
Textual's CSS has both padding and margin properties.
The grid has a number of properties for changing its appearance, amongst them is
grid-gutter
which sounds to be what you're looking for.It would be helpful if you gave some indication as to what ways you did try and how they didn't work for you. The above would seem to be what you're looking for, so if they didn't work for you, a small stand-alone example of what you're trying with an explanation of what you're wanting to do and ho…