Basic Rounded Corners

Use border-radius to create rounded corners.

Preview

Code

<style>
.box{
width:120px;
height:80px;
background:#60a5fa;
border-radius:10px;
}
</style>

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

More CSS Rounded Corners Examples (8)