Bootstrap 5 Basic
Bootstrap 5 Utilities
Bootstrap 5 Flexbox
In Bootstrap 5, padding utility classes allow you to control the inner spacing of elements. These classes are similar to the margin utilities but affect the padding inside elements.
p{side?}-{breakpoint?}-{size}
p: Indicates padding.side: Specifies which side(s) the padding applies to:t: Topb: Bottoms: Start (left in LTR, right in RTL)e: End (right in LTR, left in RTL)x: Horizontal (start and end)y: Vertical (top and bottom)breakpoint (optional): Responsive breakpoint (e.g., sm, md, lg, xl, xxl).size: Defines the size of the padding:0: No margin.1: 0.25rem (4px).2: 0.5rem (8px).3: 1rem (16px).4: 1.5rem (24px).5: 3rem (48px).auto: Sets the padding to auto for centering.Try it yourself