- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shadow Art – 1</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="circle"></div>
</body>
</html>
CSS
body {
padding: 20px;
background-color: white;
}
.circle {
margin: 10px auto;
width: 100px;
height: 100px;
border-radius: 50%;
}
You’ve gone to a different page
Goalscompleted
0
Add three inner shadows for .circle
. For each new shadow, add it to the beginning of the list of shadows.
- Stretch of
10px
, color:black
, inner. - Stretch of
9px
, color:#6c6d70
, inner. - Both offsets of
5px
, feathering of5px
, offset of3px
, color:white
, inner.
Comments