Padding is used to create space inside an element. For instance, if you want to add space between the text and the border of a button, you would use padding. Here’s a basic example:
.button { padding: 10px 20px; }
In this example, 10px of padding is added to the top and bottom, and 20px to the left and right of the button. This makes the button look more spacious and clickable.