[TestDemo][CSS] circle border

문제

the avatar’s border is rounded so that it appears as a circle

첫 번째 풀이

정답코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Avatar</title>
    <style>
    .avatar {
        border:2px solid gray;
        height:150px;
        border-radius: 50%;
        width:150px;
    }
    </style>
  </head>
  <body>
    <img class="avatar" src="https://goo.gl/khGCrk" alt="avatar" />
  </body>
</html>

Success Notice: 수고하셨습니다. :+1:

Leave a comment