Jade_o.o
[css] background 실습 - 프로필 만들기 본문
background를 통해서 인스타 프로필 만들어 보자!
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>background 이용 프로필 만들기</title>
<link rel="stylesheet" href="./css_test16.css">
</head>
<body>
<div class="container">
<div class="item background"></div>
<div class="item background-img"></div>
</div>
</body>
</html>
html 코드
.item{
border-radius: 50%;
width: 500px;
height: 500px;
}
.background{
position: absolute;
background: linear-gradient(50deg, hotpink,rgb(252, 220, 90));
}
.background-img{
position: absolute;
width:470px;
height: 470px;
background-image:url(./img/i17033941953.jpg);
border: 7px solid white;
/*background-size: auto;*/
background-size: cover;
top:15px;
left:15px;
}
css 코드
코드 실행 시 결과창
'CSS' 카테고리의 다른 글
[css] transition & transform 실습 - 이미지 연달아 나열하기 (1) | 2024.01.13 |
---|---|
[css] 종합실습 - 오버워치 캐릭터창 만들기(background&flex) (0) | 2024.01.13 |
[css] Flexbox 실습 - header 만들기 (0) | 2024.01.13 |
[css] position 실습 - 애벌레 만들기 (0) | 2024.01.13 |
[css] attr 실습6 - flex-direction, flex-wrap, align-content (0) | 2024.01.13 |