<style>
.rounded {
background: silver;
height: 50px; width: 200px;
}
</style>
<div class='rounded'>둥근 모서리</div>
<style>
.rounded {
background: silver;
height: 50px; width: 200px;
border-radius: 15px;
}
</style>
<div class='rounded'>둥근 모서리</div>
<style>
.rounded {
width: 200px;
background-color: #bdf;
border: 2px solid #1bf;
padding: 0.5rem;
line-height: 1rem;
}
</style>
<div class='rounded'>둥근 모서리 테두리</div>
<style>
.rounded {
width: 200px;
background-color: #bdf;
border: 2px solid #1bf;
padding: 0.5rem;
line-height: 1rem;
border-radius: 0.5rem;
}
</style>
<div class='rounded'>둥근 모서리 테두리</div>