1

I want to reduce space between header and main in bootstrap 5 cards class shown by black line A

And line B which is between section container (or tag) and class album.

I am using cards class in bootstrap 5.

enter image description here

Thanks in advance.

slawalata
  • 389
  • 1
  • 2
  • 14

1 Answers1

2

enter image description here

As shown in the picture, it has a padding around.

enter image description here

You can reduce the padding of section and the space between will be reduced.

We can use bootstrap spacing class with it or can user own custom class to decrease the padding.

  • p-2 (padding 2 for all sides)
  • pt-2 (padding 2 for top)
  • pb-2 (padding 2 for bottom)

and the final html will be like

<section class="jumbotron text-center pt-2 pb-2">

or

<section class="jumbotron text-center custom-pading-class">

Hope this helps

PRATHEESH PC
  • 1,461
  • 1
  • 3
  • 15