HTML&CSS - border-radius
by Code_Garage
HTML
<div class="container" id="example">Lorem ipsum</div>
CSS
body {
min-height: 600px;
}
.container {
font-family: arial;
font-weight: bold;
width: 100px;
height: 100px;
margin: 5px;
padding: 5px;
box-sizing: border-box;
}
#example {
border: 4px solid darkblue;
border-radius: 10px;
}