Skip to content

Instantly share code, notes, and snippets.

@yangtaeho
Last active May 19, 2018 06:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yangtaeho/6410bce93fb8875f8ea2ea1dc7842a02 to your computer and use it in GitHub Desktop.
Save yangtaeho/6410bce93fb8875f8ea2ea1dc7842a02 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>76-1</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.circle-1 {
position: relative;
width: 176px;
height: 176px;
}
.circle-2 {
position: absolute;
left: 38px;
top: 38px;
width: 100px;
height: 100px;
text-align: center;
font-size: 78px;
line-height: 75px;
border-radius: 50px;
color: white;
background-color: blue;
box-shadow: 0 0 0 15px white, 0 0 0 30px red, 0 0 15px 30px red, inset 0 0 0 15px red;
}
</style>
</head>
<body>
<div class="circle-1">
<div class="circle-2">
</div>
</div>
</body>
</html>
Copy link

ghost commented May 19, 2018

  1. div 구조를 잘 지켰는가 : 5
  2. box shadow를 이용했는가 : 5

10/10 => 100점 입니다.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment