Card Layout Corners

Rounded corners are commonly used in card layouts.

Preview

Code

<style>
.card{
width:200px;
padding:20px;
background:#f3f4f6;
border-radius:12px;
}
</style>

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

More CSS Rounded Corners Examples (8)