CSS Button Padding

Padding is commonly used to create comfortable button spacing.

Preview

Code

<style>
button{
padding:10px 20px;
background:#2563eb;
color:white;
border:none;
border-radius:6px;
}
</style>

<button>Button</button>

More CSS Padding Examples (7)