Question:
i try to use padding inside d-flex to seperate the element that become one inside the d-flex class, but when i try to add padding, it’s not working and change nothing, if i don’t use the d-flex, the element won’t become inline one by one so i need to use d-flex but in d-flex , the padding is not working, how to properly use itcode example :

Answer:
Padding will add space inside the border of the element. You can fix the issue by adding a classyour-class
in the flex container and giving a gap: 20px
using CSS on the parent element.
It will separate the elements from each other.If you have better answer, please add a comment about this, thank you!