Card Component Example

border-box keeps card components predictable.

Preview

Code

<style>
.card{
width:200px;
padding:20px;
border:2px solid #2563eb;
box-sizing:border-box;
background:white;
}
</style>

<div class="card">
Card component
</div>

More CSS Box Sizing Examples (8)