Border radius (rounded corners)
by danielkwood
HTML
<html>
<head>
<title>Rounded corners on divs</title>
<link rel="stylesheet" href="theme.css" type="text/css"/>
</head>
<body>
<div class="round">
</div>
</body>
</html>
CSS
.round{
background-color: #66bb6a;
width: 150px;
height: 100px;
border-radius: 10px;
}