CSS Box Model Content

The content area is where text and images appear inside the element.

Preview

Code

<style>
.box{
width:200px;
background:#fde68a;
padding:10px;
border:2px solid #f59e0b;
}
</style>

<div class="box">Content area</div>

More CSS Box Model Examples (8)