정보/WEB
background예제 2
여기블로그
2022. 12. 28. 01:01
728x90
반응형
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
img {
width: 800px;
box-shadow: 5px 5px 30px 2px black;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
border: 10px solid #ccc;
}
</style>
</head>
<body>
<img src="../Resource/bear.jpg" alt="곰">
</body>
</html>
728x90
반응형