<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Avatar</title>
<style>
/* Write your CSS solution here (do not edit the surrounding HTML) */
img{
border-radius: 50%;
width: 150px;
height: 150px;
border: 2px solid #808080;
}
</style>
</head>
<body>
<img class="avatar" src="https://goo.gl/khGCrk" alt="avatar" />
</body>
</html>
1. rounded border
2. border style: solid border with 2px, border color: gray
3. width와 height는 모두 150px
[Bootstrap] Bootstrap 다운로드 & 설치 (feat. VSCode) (0) | 2021.01.29 |
---|---|
[HTML] Semantic Web(시맨틱 웹) (0) | 2021.01.28 |
[TestDome] HTML/CSS and JavaScript Test Questions (0) | 2021.01.10 |
[TestDome] Remove Property (JavaScript) (0) | 2021.01.10 |
[TestDome] Ensure (JavaScript) (0) | 2021.01.09 |