bootstrap-5bootstrap-cards

Reducing space betwen header and main in bootstrap, and section and continer in bootstrap 5 cards


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.


Solution

  • 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.

    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