CSS Box Model Padding

Padding creates space between the content and the border.

Preview

Code

<style>
.box{
background:#d1fae5;
padding:30px;
border:3px solid #16a34a;
}
</style>

<div class="box">Padding layer example</div>

More CSS Box Model Examples (8)